|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2019-12-19 11:41 UTC] dmitry@php.net
-Assigned To:
+Assigned To: dmitry
[2019-12-19 20:19 UTC] dmitry@php.net
[2019-12-19 20:19 UTC] dmitry@php.net
-Status: Assigned
+Status: Closed
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Nov 11 08:00:02 2025 UTC |
Description: ------------ We destroy temporaries using zval_ptr_dtor_nogc, so the root is not registered. Test script: --------------- <?php function get() { $t = new stdClass; $t->prop = $t; return $t; } var_dump(get());