php4-beta | 199912
Date: 12/28/99
- Next message: Stig-Ørjan Smelror: "Re: [PHP4BETA] cvs: /php4/ext/imap imap.c"
- Previous message: Thies C. Arntzen: "[PHP4BETA] Re: [PHP-DEV] PHP 4.0 Bug #3054: func_num_args() returns incorrect value"
- In reply to: Thies C. Arntzen: "[PHP4BETA] Re: [PHP-DEV] PHP 4.0 Bug #3054: func_num_args() returns incorrect value"
- Next in thread: Andi Gutmans: "Re: [PHP4BETA] Re: [PHP-DEV] PHP 4.0 Bug #3054: func_num_args() returns incorrect value"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
TCA>> <?
TCA>> function test()
TCA>> {
TCA>> var_dump(func_num_args());
TCA>> printf("%d <BR>\n",func_num_args());
TCA>> }
TCA>> test(1);
TCA>> ?>
TCA>> seems that the argument_stack is confused - zeev, andi?
Also seems that's more of printf problem (or parameter passing problem):
<?
function test()
{
$a = func_num_args();
printf("%d %d <BR>\n",func_num_args(),$a);
}
test(1);
?>
says:
135440000 1 <BR>
-- Stanislav Malyshev stas <email protected> +972-3-6139665-- PHP 4.0 Beta Mailing List <http://www.php.net/version4/> To unsubscribe, e-mail: php4beta-unsubscribe <email protected> For additional commands, e-mail: php4beta-help <email protected> To contact the list administrators, e-mail: php4beta-admin <email protected>
- Next message: Stig-Ørjan Smelror: "Re: [PHP4BETA] cvs: /php4/ext/imap imap.c"
- Previous message: Thies C. Arntzen: "[PHP4BETA] Re: [PHP-DEV] PHP 4.0 Bug #3054: func_num_args() returns incorrect value"
- In reply to: Thies C. Arntzen: "[PHP4BETA] Re: [PHP-DEV] PHP 4.0 Bug #3054: func_num_args() returns incorrect value"
- Next in thread: Andi Gutmans: "Re: [PHP4BETA] Re: [PHP-DEV] PHP 4.0 Bug #3054: func_num_args() returns incorrect value"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

