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
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: 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

Pull Requests

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 Dec 21 17:01:58 2024 UTC