|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2020-01-02 12:12 UTC] nikic@php.net
-Status: Open
+Status: Verified
[2020-01-02 12:12 UTC] nikic@php.net
[2020-01-02 14:04 UTC] nikic@php.net
[2020-01-02 14:55 UTC] nikic@php.net
[2020-01-02 14:55 UTC] nikic@php.net
-Status: Verified
+Status: Closed
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Nov 02 16:00:01 2025 UTC |
Description: ------------ When OPcache loads cached script from file, PHP fails to identify typed property specifier in the loaded class, and reports it typed as "unknown or null". Fails on PHP-7.4 (8d2b20db58849d1f54303f66656a3776456cbe95), while succeeds on master (a9c04aee67a1d787101c967b8980d679b1714bf0). I'm sorry to bother if it's going to be fixed in 7.4 branch too. Test script: --------------- mkdir /dev/shm/opcache ./php -n -d extension_dir=modules/ -d zend_extension=opcache -d opcache.enable=1 -d opcache.enable_cli=1 -d opcache.file_cache=/dev/shm/opcache main.php # run above script twice [main.php] <?php opcache_reset(); spl_autoload_register(function ($cls) { echo "$cls\n"; require_once(__DIR__ . "/$cls.php"); }); try { $c = new C(); $x = new X($c); echo "Success\n"; } catch (Error $e) { echo $e->getMessage() . "\n"; } [C.php] <?php class C {} [X.php] <?php class X { private C $c; public function __construct(C $c) { $this->c = $c; } } Expected result: ---------------- $ ./php ... C X Success $ ./php ... C X Success Actual result: -------------- $ ./php ... C X Success $ ./php ... C X Typed property X::$c must be unknown or null, C used