|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2006-07-26 07:07 UTC] tony2001@php.net
[2006-07-30 08:35 UTC] php at elitecoders dot com
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Dec 04 18:00:01 2025 UTC |
Description: ------------ When a function argument list contains a variable reference which has a default value, there is no output. It may be because of a crash, but I was unable to test for that because I don't have access to the log files. This reproduce code works as expected in php 5. Reproduce code: --------------- <?php function exec_bug(&$var_ref = NULL) { } echo "working."; ?> Expected result: ---------------- working.