|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[1999-09-02 21:38 UTC] zeev at cvs dot php dot net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Nov 02 07:00:01 2025 UTC |
Okay, The initial reason for getting the latest CVS was an error where a script wouldnt include another script. The page just stayed blank. The new recompile didnt solve the problem, but I did find what caused it. If an already declared function is declared again, no error message is generated. A little script to demonstrate: <script language="php"> function foo() { echo "hello"; } function foo() { echo "hello"; } echo "check!"; </script> Should output an error, but instead the page stays blank.