php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #29551 ob_start() and __destruct() method
Submitted: 2004-08-06 17:40 UTC Modified: 2004-08-06 20:31 UTC
Votes:1
Avg. Score:5.0 ± 0.0
Reproduced:0 of 0 (0.0%)
From: j_amel83 at yahoo dot com Assigned:
Status: Closed Package: Output Control
PHP Version: 5.0.0 OS: Windows XP 2002
Private report: No CVE-ID: None
View Add Comment Developer Edit
Welcome! If you don't have a Git account, you can't do anything here.
You can add a comment by following this link or if you reported this bug, you can edit this bug over here.
(description)
Block user comment
Status: Assign to:
Package:
Bug Type:
Summary:
From: j_amel83 at yahoo dot com
New email:
PHP Version: OS:

 

 [2004-08-06 17:40 UTC] j_amel83 at yahoo dot com
Description:
------------
I found that if there is an ob_start() function which is calledback with it optional 'output_callback' argument in a PHP5 page non of Destructor method in exists objects can send any output to the standard output.

Reproduce code:
---------------
<?php
ob_start('ob_gzhandler');
class Test {
	function __construct() {
		echo 'Constructed <br />';
	}
	function __destruct() {
		echo 'Destructed <br />';
	}
}
$test = new Test();
?>

Expected result:
----------------
Constructed <br />Destructed <br />

Actual result:
--------------
Constructed <br />

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2004-08-06 20:32 UTC] helly@php.net
This bug has been fixed in CVS.

Snapshots of the sources are packaged every three hours; this change
will be in the next snapshot. You can grab the snapshot at
http://snaps.php.net/.
 
Thank you for the report, and for helping us make PHP better.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Sat Apr 20 14:01:29 2024 UTC