. Fixed bug #73959 (lastInsertId fails to throw an exception for wrong
sequence name). (andrewnester)
-- Phar:
- . Fixed bug #70417 (PharData::compress() doesn't close temp file). (cmb)
+- PDO_Sqlite
+ . Switch to sqlite3_prepare_v2() and sqlite3_close_v2() functions (rasmus)
+
+- phar:
+ . Fixed bug #74383 (phar method parameters reflection correction).
+ (mhagstrand)
+ . Fixed bug #74196 (phar does not correctly handle names containing dots).
+ (mhagstrand)
++ . Fixed bug #74386 (Phar::__construct reflection incorrect). (villfa)
+
+- PHPDBG
+ . Added extended_value to opcode dump output. (Sara)
- posix:
. Fixed bug #71219 (configure script incorrectly checks for ttyname_r). (atoh)
INIT_CLASS_ENTRY(ce, "Phar", php_archive_methods);
phar_ce_archive = zend_register_internal_class_ex(&ce, spl_ce_RecursiveDirectoryIterator);
- zend_class_implements(phar_ce_archive, 2, spl_ce_Countable, zend_ce_arrayaccess);
+ zend_class_implements(phar_ce_archive, 2, zend_ce_countable, zend_ce_arrayaccess);
- INIT_CLASS_ENTRY(ce, "PharData", php_archive_methods);
+ INIT_CLASS_ENTRY(ce, "PharData", php_data_methods);
phar_ce_data = zend_register_internal_class_ex(&ce, spl_ce_RecursiveDirectoryIterator);
- zend_class_implements(phar_ce_data, 2, spl_ce_Countable, zend_ce_arrayaccess);
+ zend_class_implements(phar_ce_data, 2, zend_ce_countable, zend_ce_arrayaccess);
INIT_CLASS_ENTRY(ce, "PharFileInfo", php_entry_methods);
phar_ce_entry = zend_register_internal_class_ex(&ce, spl_ce_SplFileInfo);