|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2004-09-14 19:57 UTC] helly@php.net
[2004-09-19 09:37 UTC] momo@php.net
[2004-09-21 14:29 UTC] momo@php.net
[2004-09-22 23:09 UTC] helly@php.net
[2004-09-23 14:26 UTC] momo@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Oct 27 09:00:02 2025 UTC |
Description: ------------ the following code works nice when runing php-cli and php-cgi from the shell but with apache 1.3.x(cgi) the script exit without yell. Reproduce code: --------------- <? error_reporting(E_ALL); class d {} $d=new d(); echo "before"; $d->nf(); echo "after"; ?> Expected result: ---------------- before Fatal error: Call to undefined method d::nf() in c:\php\test.php on line 6 Actual result: -------------- before