ID:               42314
 Updated by:       [EMAIL PROTECTED]
 Reported By:      ramymb at gmail dot com
-Status:           Open
+Status:           Bogus
 Bug Type:         Unknown/Other Function
 Operating System: windows 2003
 PHP Version:      5.2.3
 New Comment:

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.




Previous Comments:
------------------------------------------------------------------------

[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

Reply via email to