ID: 42314 User updated by: ramymb at gmail dot com Reported By: ramymb at gmail dot com -Status: Bogus +Status: Open Bug Type: Unknown/Other Function Operating System: windows 2003 PHP Version: 5.2.3 New Comment:
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 Previous Comments: ------------------------------------------------------------------------ [2007-08-16 06:23:50] [EMAIL PROTECTED] Sorry, but your problem does not imply a bug in PHP itself. For a list of more appropriate places to ask for help using PHP, please visit http://www.php.net/support.php as this bug system is not the appropriate forum for asking support questions. Due to the volume of reports we can not explain in detail here why your report is not a bug. The support channels will be able to provide an explanation for you. Thank you for your interest in PHP. ------------------------------------------------------------------------ [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
