php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #68990 php notices doesn't not buffered in command line
Submitted: 2015-02-05 12:32 UTC Modified: 2015-02-06 05:27 UTC
From: kartechgc at gmail dot com Assigned:
Status: Closed Package: Output Control
PHP Version: Irrelevant OS: ubuntu
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: kartechgc at gmail dot com
New email:
PHP Version: OS:

 

 [2015-02-05 12:32 UTC] kartechgc at gmail dot com
Description:
------------
<?php
ob_start();
echo "Hello world";
echo $a; 
ob_end_clean();
?>

Output:
PHP Notice:  Undefined variable: a in /home/karthik/scripts/a1.php on line 4
PHP Stack trace:
PHP   1. {main}() /home/karthik/scripts/a1.php:0

Here, even notice shouldn't have been there in the output. Does notices bypass this buffer?
If the same script is run through browser, the output is empty as expected.

Test script:
---------------
<?php
ob_start();
echo "Hello world";
echo $a; 
ob_end_clean();
?>


Expected result:
----------------
The output should be empty.

Actual result:
--------------
PHP Notice:  Undefined variable: a in /home/karthik/scripts/a1.php on line 4
PHP Stack trace:
PHP   1. {main}() /home/karthik/scripts/a1.php:0

Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2015-02-06 05:27 UTC] kartechgc at gmail dot com
-Status: Open +Status: Closed
 [2015-02-06 05:27 UTC] kartechgc at gmail dot com
Invalid
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Sat Dec 21 18:01:29 2024 UTC