|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2002-06-16 14:15 UTC] sander@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Dec 22 07:00:01 2025 UTC |
I get a segmentation fault when exit is put inside a function called from the start tag callback function :- function exitFunction() { exit; } function startTagCallback($parser, $attributes) { if (!strCaseCmp($tag, "exit")) exitFunction(); } If the function startTagCallback is setup as the start tag callback function then when exitFunction is called when an <EXIT> tag is found, the child process of the webserver will segmentation fault.