ID: 42314 Updated by: [EMAIL PROTECTED] Reported By: ramymb at gmail dot com -Status: Open +Status: Bogus -Bug Type: Unknown/Other Function +Bug Type: *General Issues Operating System: windows 2003 PHP Version: 5.2.3 New Comment:
Don't redeclare test()..simple as that. Previous Comments: ------------------------------------------------------------------------ [2007-08-18 18:56:12] ramymb at gmail dot com Dear sir, I'm emailed the support, and support answered me: > Please try http://snaps.php.net/win32/php5.2-win32-installer-latest.msi > If you can still reproduce this after installing this snapshot then > please file a bug report at http://bugs.php.net/report.php > > -Hannes please try by yourself to use the simplest code: <? function test(){ return 2; } echo '<form name="FormName" action="" method="post"> <input type="submit" value="Send"> </form>'; ?> you must have the msg: >> Fatal error: Cannot redeclare test() (previously declared in C:\accounts\panela\tmp\bug.php:2) in C:\accounts\panela\tmp\index.php on line 2 I'm sure it's a bug I'm professional user of php. Thanks Ramy ------------------------------------------------------------------------ [2007-08-16 02:14:22] ramymb at gmail dot com Description: ------------ OS: windows 2003 + IIS PHP Version: 5.2.3 when I'm declare my own function myFun in a file func.php, I'm included into my main index.php, it's working at first time without any problem, when I'm using current page to submit data into the same page I'm getting the following error: Fatal error: Cannot redeclare myfun() (previously declared in C:\accounts\panela\tmp\func.php:2) in C:\accounts\panela\tmp\func.php on line 2 I don't know whats the problem, I'm tried to solve this problem but I'm failed :( this error is not logic, and the same script working in other php version like php 4.X Reproduce code: --------------- --- file: func.php --- <? function myFun($a,$b){ return $a+$b; } ?> --- file: index.php --- <? include_once("func.php"); ?> <form name="FormName" action="" method="post"> <input type="submit" value="Send"> </form> Expected result: ---------------- this code when submit data into same php page. I'm solved this problem by: <? if (!function_exists('myFun')) { function myFun($a,$b){ return $a+$b; } } ?> but unfortunately, when I'm refreshing the page I'm cant see my last editing in my function, for example, now I will edit the function to: <? if (!function_exists('myFun')) { function myFun($a,$b){ return $a*$b; } } ?> now with function_exists I cant see the new function $a*$b, but I'm see only the old function $a-$b. ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=42314&edit=1
