|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2011-03-29 11:36 UTC] aharvey@php.net
-Status: Open
+Status: Feedback
[2011-03-29 11:36 UTC] aharvey@php.net
[2013-02-18 00:34 UTC] php-bugs at lists dot php dot net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Nov 03 03:00:01 2025 UTC |
Description: ------------ This is an incorrect use of output buffering stuff okay ... but i don't think segfaults are a feature. Test script: --------------- function handler($message) { ob_end_clean(); echo $message; } ob_start('handler'); echo "foo"; Expected result: ---------------- foo Actual result: -------------- segfault