|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2001-12-12 04:20 UTC] yohgaki@php.net
[2002-01-02 13:55 UTC] lobbin@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Oct 27 16:00:01 2025 UTC |
This will crash PHP: ob_start("ob_gzhandler"); echo "something"; mail (.....); but this will not: ob_start("ob_gzhandler"); echo "something"; ob_end_flush(); mail (.....); Note: I don't have any mail server installed. The mail function should report an error, but PHP crashes instead.