Tagged Questions
The output-buffering tag has no wiki summary.
10
votes
8answers
450 views
Is using output buffering considered a bad practice? [closed]
Are ob_start / ob_get_clean() considered bad practice by php programmers in general?
Are there any disadvantages of output buffering?
7
votes
4answers
386 views
How to correctly show output at every echo on all browsers?
I moved my files to a new server and I had a script that instantly showed output on every echo to the browser, but this isn't working on the new server. Here is my test code:
...
6
votes
4answers
781 views
PHP output buffering - sounds like a bad idea, is it?
Just want to pick the experts' brains on php output buffering. There are times when I've wanted to implement it for one reason or another, but have always managed to rearrange my code to get around ...
5
votes
4answers
136 views
Difference between ob_get_clean and ob_get_flush
They both seem to do the same thing: return the output buffer content to you and delete it aftewards.
Which one should I use?
5
votes
5answers
143 views
Use case for output buffering as the correct solution to “headers already sent”
I see (not just on this site) a lot of question from inexperienced PHP programmers about the infamous "headers already sent... output started at" error, and many people suggest using ouput buffering ...
5
votes
2answers
488 views
Does output buffering in PHP require more resources?
When performance is important including server memory,I am curious if using output buffering
like ob_start(); in PHP has ANY performance hits over not using it? Does it use more memory or anything ...
5
votes
3answers
1k views
Streaming output to a file and the browser
So, I'm looking for something more efficient than this:
<?php
ob_start();
include 'test.php';
$content = ob_get_contents();
file_put_contents('test.html', $content);
echo $content;
?>
The ...
4
votes
1answer
86 views
Javascript (with Ajax) from PHP and Output Buffering
Thanks already to advice from Stackoverflow subscribers I now have a working JSON formatted file from my PHP scripts.
The next step is to have a Javascript script to retrieve this data for sorting, ...
4
votes
1answer
120 views
PHP Does die() do an ob_end_flush()?
I can't seem to find a good answer on this anywhere. If I am running output buffering, and a die() is fired, does that kick off an ob_end_flush() as well?
4
votes
4answers
2k views
PHP buffer ob_flush() vs. flush()
What's the difference between ob_flush() and flush() and why must I call both?
The ob_flush() reference says "This function will send the contents of the output buffer (if any).".
The flush() ...
4
votes
6answers
539 views
PHP: Output data before and after sleep()?
This is purely for learning more about output buffering and nothing more. What I wish to do is echo a string to the browser, sleep 10 seconds, and then echo something else. Normally the browser would ...
4
votes
4answers
1k views
Cookies are Not Being Set Properly in PHP Script
Im very new in php and try to use cookie but it is not woking in my site, can anyone guide me please , what is going wrong in my code:
<?php
session_start();
?>
<script>
function ...
3
votes
2answers
155 views
whats the difference between ob_flush and ob_end_flush?
i am confused about the PHP functions ob_flush() and ob_end_flush().
About the function ob_flush the manual says
The buffer contents are discarded after ob_flush() is called.This function does not ...
3
votes
1answer
86 views
If I use echo a lot, should I use output buffering?
Hi this is a basic question, however I'm not sure about it, so I ask you:
If I have more than 100 php echos in my html code, something like this:
file.php:
<!-- headers -->
<h1><?php ...
3
votes
2answers
105 views
Confused Man Seeking: “Warning: Cannot modify header information”
I'm very much wanting to see the PHP warning "Cannot modify header information". Why? Because it's sensible. You shouldn't be able to send headers after body.
But I can!! If I debug some vars in a ...
3
votes
1answer
215 views
PHP Output buffering on the command line
I have a PHP script that I want to run on the command line. This script, among other things, needs to load a PHP file that contains both PHP and HTML content and get the rendered output from that ...
3
votes
1answer
148 views
detecting user abort with output buffering enabled in PHP
The Notes section in the function documentation of ignore_user_abort() suggest that PHP cannot detect that a user has aborted the request if no data is sent to the client. This is true for the ...
3
votes
2answers
483 views
PHP Output Buffering
What are the methods to turn on output buffering either within a PHP script or using and htaccess file?
I use the following method in an htaccess file in the root of my application:
php_value ...
3
votes
2answers
447 views
PHP ob_start() question
Am I allowed to have two or more ob_start(); in my php files if so what is the proper way to end one ob_start(); and start another?
3
votes
1answer
258 views
ob_get_level() starts at level 1
Having a few problems with output buffering. Mainly, I'm trying to run output buffering with the ob_gzhandler callback, but it keeps telling me its using an unsupported compression type. Everything is ...
3
votes
2answers
120 views
strange ob_start() behaviour - double output
ob_start() doesn't seem to be stopping any output so when I flush the buffer it's doubling up
<?php
ob_start();
echo "Text..... <br />";
echo ob_get_flush();
?>
Outputs
Text.....
...
3
votes
5answers
2k views
what is output buffering?
can anybody explain me what is output buffering and why one is using it in php?
3
votes
1answer
1k views
If you flush the content (ob_flush) of an AJAX request, the content will get loaded?
I mean... Let's that we just make an AJAX request and inser the result inside a div#result..
In the backend the script use ob_flush() to send the header but not terminate the request until it's ...
3
votes
1answer
1k views
How output buffering blocks in PHP/Apache works?
Suppose I am echoing random data from PHP to browser. Total amount of random data is about XGb and echo is done in YKb chunks. ob_start() is not used. Will echo calls block after PHP and Apache ...
3
votes
5answers
642 views
Keeping a live connection with php?
I am working on a project has me constantly pinging a php script for new data, so if I understand this correctly that means that the php script being pinged gets run over and over indefinitely. It ...
3
votes
7answers
2k views
In PHP, is there a way to capture the output of a PHP file into a variable without using output buffering?
In PHP, I want to read a file into a variable and process the PHP in the file at the same time without using output buffering. Is this possible?
Essentially I want to be able to accomplish this ...
2
votes
2answers
59 views
How to tell if the function is called from an output buffering callback?
In a function, how can I find out if it's been called from an output buffering callback (not necessarily directly)?
function foo() {
if (magic here ????)
$log->write("foo:Callback")
...
2
votes
4answers
131 views
get return from echo
I'm working with some functions that echo output. But I need their return so I can use them in PHP.
This works (seemingly without a hitch) but I wonder, is there a better way?
function getEcho( ...
2
votes
1answer
135 views
Error with output buffering and FirePHP
I get unexplained "Headers already sent on line #..." error on those 2 lines that execute "echo ..." in the code below.
Simplified version of the case:
<?php
ob_start();
//Initializing ...
2
votes
3answers
84 views
What can be the possible situations where one should prefer the unbuffered output?
By the discussion in my previous question I came to know that Perl gives line buffer output by default.
$| = 0; # for buffered output (by default)
If you want to get unbuffered output then set the ...
2
votes
1answer
338 views
CodeIgniter - Editing Output Buffer before sent to browser?
I'm researching the PHP framework CodeIgniter. I need some help regarding editing the output before it's flushed to the user.
Usually in PHP, you can just use ob_start(); and then ob_get_clean(); to ...
2
votes
3answers
612 views
What is the purpose of the SerialPort write buffer?
From outside SerialPort object, it seems to make no difference what the size of the write buffer is, and whether or not it is full.
Using synchronous writing, the write method blocks until all the ...
2
votes
3answers
105 views
Why save output until the end?
Very quick question about programming practices here:
I've always used echo() to output HTML code to the user as soon as it was generated, and used ob_start() at the same time to be able to output ...
2
votes
1answer
1k views
PHP Flush/ob_flush not working
I've tried several attempts at getting my flush and ob_flush to work. I've tried setting the ini to allow buffering, I've tried using several different functions I found online for output buffering, ...
2
votes
3answers
156 views
Boost: how to create a thread so that you can control all of its standard output, standard errors?
I create a win32 console app in C++. I use some API (not mine, and I can not modify its sources). It Is written so that it writes some of its info onto console screen not asking... each time I call it ...
2
votes
2answers
420 views
PHP buffer why \r\n
I have a few conceptual questions (all related, I think) regarding the following script, at the comments. The script works fine.
<?PHP
ob_start();
// Create string to overflow browser buffer ...?
...
2
votes
1answer
168 views
flush() Not displaying output in PHP?
I have this code:
set_time_limit(0);
header("Cache-Control: no-cache, must-revalidate");
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
ob_flush();
flush();
$start = time();
...
2
votes
3answers
186 views
Necessity of prefixing all PHP pages with ob_start()
Is it OK to have ob_start() in the beginning of all PHP pages?
If I don't do this, I get the "headers already sent" error.
2
votes
2answers
276 views
Powershell: How to capture output from the host
I am using powershell to automate some tasks related to checking out/merging in TFS. When I call
tf get * /recurse
I get a bunch of data scrolling by about the files that are getting checked out. ...
2
votes
1answer
288 views
Included PHP scripts can't access $_POST when output buffering?
I have an HTML form POSTing to the following index.php:
<?php require_once("/home/full/path/to/included/file.php"); ?>
And in file.php, I am trying to access $_POST:
ob_start();
...
2
votes
1answer
357 views
emacs/Python: running python-shell in line buffered vs. block buffered mode
In a related question and answer here, someone hypothesized that python-shell within emacs(23.2) was block-buffered instead of line-buffered. The recommended fix was to add sys.stdout.flush() to the ...
2
votes
2answers
133 views
echoing multiple arguments when output_buffering is on
One of Googles Let's make the internet faster talks included something about using echo with multiple arguments in PHP instead of using print or string concatenation.
echo 'The ball is ', $color;
...
1
vote
1answer
37 views
Output Buffering Not Displaying Error Notice
In my PHP script I had errors turned onto E_ALL. Then around my views I add an output buffer that starts and ends with ob_start()/ob_flush. The problem I am having now is Notices will not be displayed ...
1
vote
2answers
33 views
Can't make ob_get_clean() string into an integer, says output is an 18-character string
I am trying to obtain a number from a function which only echos text instead of returning it to a variable as follows:
ob_start();
function_to_get_id_number();
$thisIDnumber = ob_get_clean();
If I ...
1
vote
4answers
100 views
Output buffer in PHP won't work
For some time (serveral nights..) I've been trying to get a time-expensive script to output simple dots so I know it's still processing the script. Basically it's a cronjob which is going to run ...
1
vote
2answers
53 views
Setting PHP headers within function / class method
I have written a class which outputs content type information as a header, however this does not work. After reading PHP.net it states
Remember that header() must be called before any actual ...
1
vote
2answers
43 views
PHP include/require_once but with assign contents to a variable
Is this possible?
Like
$var = require_once('lol.php');
So any HTML output that lol.php does will go inside $var
I know about output buffering, I was just wondering if there's some special built in ...
1
vote
1answer
164 views
ob_start() Alternative for templates in PHP?
Question Updated
I am building an MVC framework, for my templates and views, I will have a main page template file and my views will be included into this template.
The only way I have seen to do ...
1
vote
2answers
43 views
How do I stop ZF from sending a empty character at the beginning?
I'm developing an app using ZF which has a REST API. Everything is going well except that my XML has a blank character at the beginning and so the XML is breaking the rules of having the XML ...
1
vote
1answer
316 views
session_regenerate_id() - headers already sent in unit testing Yii controller
I'm trying to unit-test my controller (Yii framework).
/**
* @dataProvider provider
*/
public function testActionEdit_view_login($controller){
$user = new CWebUser;
$user->id = ...