|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2011-11-18 01:50 UTC] kalle@php.net
-Status: Open
+Status: Assigned
[2011-11-18 01:52 UTC] kalle@php.net
-Status: Open
+Status: Assigned
-Assigned To:
+Assigned To: kalle
[2011-12-25 00:05 UTC] me at ktamura dot com
[2011-12-27 08:14 UTC] stas@php.net
-Status: Assigned
+Status: Closed
[2011-12-27 08:14 UTC] stas@php.net
[2011-12-27 08:40 UTC] laruence@php.net
[2012-04-18 09:46 UTC] laruence@php.net
[2012-07-24 23:37 UTC] rasmus@php.net
[2013-11-17 09:34 UTC] laruence@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Oct 28 13:00:01 2025 UTC |
Description: ------------ Prior to 5.4.0RC1, when calling ob_get_clean() with no buffers present, no errors were raised. Starting with 5.4.0RC1, the function now raises an E_NOTICE in such situations. Test script: --------------- ini_set('display_errors', true); error_reporting(-1); $return = ob_get_clean(); Expected result: ---------------- (no output) Actual result: -------------- Notice: ob_get_clean(): failed to delete buffer. No buffer to delete