|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2001-05-14 07:56 UTC] jmoore@php.net
[2001-06-10 21:24 UTC] jmoore@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Nov 04 21:00:01 2025 UTC |
The parser crashes when invoking die() or exit function inside included module function. Ex.: in module main.php ... require_once( "Module.inc.php" ); ... $object->some_function( $parameter ); ... in module Module.inc.php ... class SomeObject { function some_function( $parameter ) { ... exit; // or die(); } } ...