|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2015-03-27 14:24 UTC] tyrael@php.net
-Status: Open
+Status: Closed
-Assigned To:
+Assigned To: tyrael
[2015-03-27 14:24 UTC] tyrael@php.net
[2015-03-27 14:30 UTC] nikic@php.net
-Status: Closed
+Status: Re-Opened
[2015-03-27 14:30 UTC] nikic@php.net
[2015-03-27 15:43 UTC] nikic@php.net
[2015-04-06 09:30 UTC] tyrael@php.net
-Assigned To: tyrael
+Assigned To:
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Nov 01 17:00:02 2025 UTC |
Description: ------------ Allow use function return value in write context if this function return value by reference (Such as c or c++) Test script: --------------- function &test() { static $a = 0; return $a; } print(++test()); print(++test()); print(++test()); Expected result: ---------------- 123 Actual result: -------------- Fatal error