|
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-2026 The PHP GroupAll rights reserved. |
Last updated: Wed Feb 04 21:00:01 2026 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.