|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2008-02-03 02:22 UTC] rasmus@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Dec 06 12:00:01 2025 UTC |
Description: ------------ Exception seems not working. Please see the example code below. Reproduce code: --------------- try{ non_existant_function(); }catch(Exception $e){ echo "Exception thrown:" . $e->getMessage(); } Expected result: ---------------- Expected to throw exception in above code but the script dies with a Fatal error: call no non existant function ... Actual result: -------------- Fatal Error: call to non existant function non_existant_function().