Ask a Question related to PHP Development, Design and Development.
-
iliaa@php.net #1
#25152 [Opn->Bgs]: output buffering functions don't catch "virtual" output
ID: 25152
Updated by: [email]iliaa@php.net[/email]
Reported By: msarsale at buenosaires dot gov dot ar
-Status: Open
+Status: Bogus
Bug Type: Output Control
Operating System: linux
PHP Version: 4.3.2
New Comment:
Thank you for taking the time to write to us, but this is not
a bug. Please double-check the documentation available at
[url]http://www.php.net/manual/[/url] and the instructions on how to report
a bug at [url]http://bugs.php.net/how-to-report.php[/url]
This is because the virtual() function is essentialy an Apache server
side include and as such it does not go through PHP but rather via
Apache directly. Consequently PHP cannot buffer this function's output.
Previous Comments:
------------------------------------------------------------------------
[2003-08-19 12:33:09] msarsale at buenosaires dot gov dot ar
Description:
------------
Output buffering function don't catch the output of a 'virtual' call.
For example, the following code produces 'ba' (where coso.html contains
'b')
<?
ob_start();
virtual("/coso.html");
$c=ob_get_contents();
ob_end_clean();
print "a";
print $c;
?>
Expected result:
----------------
Virtual output should be catched by the ob functions. The above code
should print
'ab'
instead of
'ba'
Actual result:
--------------
The above code prints the virtual output before the ob_end_clean()
call
------------------------------------------------------------------------
--
Edit this bug report at [url]http://bugs.php.net/?id=25152&edit=1[/url]
iliaa@php.net Guest
-
#40482 [NEW]: Sprintf format specifier "e" output modification
From: kore@php.net Operating system: Linux 2.6.20 PHP version: 5.2.1 PHP Bug Type: Output Control Bug description: Sprintf... -
Dov Isaacs' "Successful Printed Output" Presentation - The 2004 InDesign Conference
Attached is a PDF file of the presentation I made at the The 2004 InDesign Conference held in Boston, Massachusetts in July. This presentation,... -
#20382 [Com]: strtotime ("Monday", $date) can produce incorrect output
ID: 20382 Comment by: pierre dot baudracco at aliacom dot fr Reported By: nickj-phpbugs at nickj dot org Status: ... -
finger output: where does "last time the user read mail" come from?
Hi, from the man page, it says: o last time the user received mail, and the last time the user read mail In the man page, it doesn't... -
OpenServer 5.0.4 telnet sessions appearing in "who" output even though the session is dead - help!
I have a client who uses a Citrix box and Anzio to connect to an SCO OpenServer 5.0.4 box via a network telnet session. Lately, when folks have...



Reply With Quote

