?? ??? 2016 PHP 7.0.4
- Core:
+ . Fixed bug #71443 (Segfault using built-in webserver with intl using
+ symfony). (Laruence)
. Fixed bug #71442 (forward_static_call crash). (Laruence)
. Fixed bug #71441 (Typehinted Generator with return in try/finally crashes).
(Bob)
/* shutdown_executor() takes care of its own bailout handling */
shutdown_executor();
+ zend_try {
+ zend_ini_deactivate();
+ } zend_end_try();
+
zend_try {
shutdown_compiler();
} zend_end_try();
fprintf(stderr, " -------- -------- ----------- ------\n");
fprintf(stderr, "ZVAL %8d %8d %9d %8d\n", GC_G(zval_possible_root), GC_G(zval_buffered), GC_G(zval_remove_from_buffer), GC_G(zval_marked_grey));
#endif
-
- zend_try {
- zend_ini_deactivate();
- } zend_end_try();
}
/* }}} */
--INI--
opcache.enable=1
opcache.enable_cli=1
+opcache.file_cache_only=0
--SKIPIF--
<?php require_once('skipif.inc'); ?>
--FILE--
$f = require $tmp;
var_dump($f());
-opcache_invalidate($tmp, true);
+var_dump(opcache_invalidate($tmp, true));
file_put_contents($tmp, '<?php return function(){ return "b";};');
$f = require $tmp;
?>
--EXPECT--
string(1) "a"
+bool(true)
string(1) "b"