|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2008-11-23 21:27 UTC] lbarnaud@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Oct 30 16:00:01 2025 UTC |
Description: ------------ func_num_args(); returns nothing when using inside a die. Reproduce code: --------------- <?php function variableArg() { die(func_num_args()); } variableArg("Arg1", "Arg2", "Arg3"); Expected result: ---------------- 3