ID: 44394
User updated by: weirdan at gmail dot com
Reported By: weirdan at gmail dot com
-Status: Feedback
+Status: Open
Bug Type: Output Control
Operating System: Windows XP
PHP Version: 5.2.5
New Comment:
not fixed on WinXP, tested with this script:
<?php
echo phpversion() . "\n";
$string = "<a href='a?q=1'>asd</a>";
output_add_rewrite_var('a', 'b');
echo $string;
ob_flush();
ob_end_clean();
Results:
C:\Windows\system32\cmd.exe /c .\php.exe q.php | more
5.2.6RC3-dev
<a href='a?q=1&a=b'>asd</
Hit any key to close this window...
Previous Comments:
------------------------------------------------------------------------
[2008-03-11 21:36:52] [EMAIL PROTECTED]
Please try using this CVS snapshot:
http://snaps.php.net/php5.2-latest.tar.gz
For Windows (zip):
http://snaps.php.net/win32/php5.2-win32-latest.zip
For Windows (installer):
http://snaps.php.net/win32/php5.2-win32-installer-latest.msi
------------------------------------------------------------------------
[2008-03-10 16:03:29] weirdan at gmail dot com
Description:
------------
It seems like a regression of http://bugs.php.net/bug.php?id=26862 -
two last bytes missing from output when using ob_flush() +
ob_end_clean(). ob_end_flush() works as expected though.
The same issue is observed on PHP 5.2.3 / Linux
Reproduce code:
---------------
<?php
$string = "<a href='a?q=1'>asd</a>";
output_add_rewrite_var('a', 'b');
echo $string;
ob_flush();
ob_end_clean();
Expected result:
----------------
<a href='a?q=1&a=b'>asd</a>
Actual result:
--------------
<a href='a?q=1&a=b'>asd</
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=44394&edit=1