active questions tagged output-buffering - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T06:17:05Z http://stackoverflow.com/feeds/tag/output-buffering http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1581586/html-into-php-variable-html-outside-php-code 0 HTML into PHP Variable (HTML outside PHP code) nigative 2009-10-17T06:39:02Z 2009-10-17T09:19:40Z <p>Hi,</p> <p>I am new to php and wondering if I can have something like this:</p> <pre><code>&lt;?php ... magicFunctionStart(); ?&gt; &lt;html&gt; &lt;head&gt;...&lt;/head&gt; &lt;body&gt;...&lt;/body&gt; &lt;/html&gt; &lt;?php $variable = magicFunctionEnd(); ... ?&gt; </code></pre> <p>What I have to use right now is</p> <pre><code>&lt;?php ... $variable = "&lt;html&gt;&lt;head&gt;...&lt;/head&gt;&lt;body&gt;...&lt;/body&gt;&lt;/html&gt;" ?&gt; </code></pre> <p>Which is annoying and not readable.</p> <p>Thanks.</p> http://stackoverflow.com/questions/1581131/should-i-leave-outputbuffering-on-or-off-in-a-production-environment 1 Should I leave output_buffering On or Off in a Production Environment? justinl 2009-10-17T01:15:57Z 2009-10-17T01:41:42Z <p>I'm about to launch a website and I'm going over my php.ini to prepare all the settings for a production environment.</p> <p>I'm debating whether to leave output_buffering On, Off, or set it to a buffer limit (like 4096). Is there any pro's or con's to having the output_buffer turned On or Off? I've read that turning the buffer Off will give you some extra performance, but is there anything I should know before making my decision?</p> <p>Why leave it off?<br /> Why leave it on?<br /> Why leave it on with a buffer limit? </p> http://stackoverflow.com/questions/1572204/problems-with-output-buffering-in-php -1 Problems with output buffering in php Unni 2009-10-15T12:56:56Z 2009-10-15T14:28:55Z <p>I have a php script which takes a long time to finish and it fails due to execution timeout (script runs too long) or network timeout.</p> <p>Essentially the script does a for loop which does two to three processes on each iteration. </p> <ol> <li>request an external service through curl </li> <li>parse the xml</li> <li>insert the response into a database</li> </ol> <p>Suppose that each iteration takes 1-2 seconds to complete.</p> <p>To resolve the timeout issues I tried to set <code>max_execution_timeout</code> and <code>default_socket_timeout</code> to 0. Please let me know if this is correct.</p> <p>The key point to note is that the for loop may process 70,000 records -- it's basically a bulk SMS system.</p> <p>I've tried sending partial responses to the browser using <code>flush()</code> or <code>ob_implicit_flush(true)</code> and setting <code>output_buffering</code> to 0 but I'm only getting the final response and not the partial ones.</p> <p>(Original below)</p> <p><hr /></p> <p>Hi, I would like to get assistance in one of my projects..ill explain the issues..what am doin is executing a long php script...where it takes a long time to finish running it..im experiencing script execution timeout and network timeout issues....in my script..its a for loop which does 2-3 processes, on each iteration...one is requesting an external service(through curl)and getting the response and pasrsing the xml,inserting the response to the database...suppose that each iteration takes around 1-2 sec...for timeout issues i tried to set the "max_execution_timeout" and "default_socket_timout" to 0..please suggest if there is any issue with it..eventhough this is temporary...and main thing to note is for the loop..there may be more than 70k records....its basically a bulk sms system... This timeout mainly when the browser complaints the server..that im waiting for your response for many hours and its time for me to sleep..so bye bye..this is what i learned so far...so i thought of queing the longs list of records into small chunks and executing those and sending the response to the browser thereby satisfying it...but the problem im been working around for few days is sending the partial response to the browser...using flush() or ob_implicit_flush(true);...and setting output_buffering to 0...tried all possibilities...but im getting only the final response and not the partial ones...and atlasy my only intention was to keep the process active...what could be the possibility for this...any solutions for this...please help me out..</p> http://stackoverflow.com/questions/1569425/unbuffered-createnamedpipe-for-use-as-stdout-for-createprocess 0 Unbuffered CreateNamedPipe for use as stdout for CreateProcess Oleg Zhylin 2009-10-14T22:46:56Z 2009-10-14T23:04:22Z <p>I would like to execute arbitrary command-line application and read its standard output as it gets produced. I use CreateNamedPipe to create a pipe and then supply other end (open used CreateFile) to CreateProcess. Provided the target process doesn't explicitly manipulates with standard output bufferring is there a way to make sure that pipe in question is unbufferred or at least that the system minimun is used as buffer size?</p> http://stackoverflow.com/questions/1556613/php-output-buffering-sounds-like-a-bad-idea-is-it 2 PHP output buffering - sounds like a bad idea, is it? Aaron 2009-10-12T20:14:05Z 2009-10-12T20:47:20Z <p>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 it. </p> <p>I avoid using it because it sounds like it'll cost resources. I mean, if they can offer the coder such wonderful flexibility, why don't they always buffer output? The only answer I can come up with is: because not buffering it saves tremendous resources, and with good coding practice you shouldn't need it. </p> <p>Am I way off here?</p> http://stackoverflow.com/questions/1502955/does-output-buffering-in-php-require-more-resources 4 Does output buffering in PHP require more resources? jasondavis 2009-10-01T09:45:54Z 2009-10-01T11:50:38Z <p>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 to use it? </p> <p>In my situation on a high traffic site where I need all the memory I can for memcache and APC and all the other server activities I am just curious if I should use it or not, the only real reason it comes in handy for me is for redirecting pages , sending headers I should say after a header has already been sent, my site has header , body, footer file setup so sometime I need to redirect depending on what is in the body file so if the header is already shown ion screen that creates a problem, using output buffering is 1 solution but there are other solutions so just curious about performance</p> http://stackoverflow.com/questions/1445506/get-content-between-two-strings-php 0 Get content between two strings PHP Lizard 2009-09-18T16:06:49Z 2009-09-18T16:23:13Z <p>Whats is the best way to obtain the content between two strings e.g.</p> <pre><code>ob_start(); include('externalfile.html'); ## see below $out = ob_get_contents(); ob_end_clean(); preg_match('/{FINDME}(.|\n*)+{\/FINDME}/',$out,$matches); $match = $matches[0]; echo $match; ## I have used .|\n* as it needs to check for new lines. Is this correct? ## externalfile.html {FINDME} Text Here {/FINDME} </code></pre> <p>For some reason this appears to work on one place in my code and not another. Am I going about this in the right way? Or is there a better way?</p> <p>Also is output buffer the way to do this or file_get_contents?</p> <p>Thanks in advance!</p> http://stackoverflow.com/questions/773876/problem-with-outputbuffering-and-php-ini 0 Problem with output_buffering and php.ini. chosta 2009-04-21T18:13:27Z 2009-09-09T05:29:26Z <p>Hi,</p> <p>when trying to log-in at this <a href="http://www.ucuzhizmet.com/" rel="nofollow">site</a> (user:polopolo,pass:samara) the result is a blank page. I know that the problem is with the sending of headers and the *ouput_buffering* in the php.ini file. I had the same problem on another host but the problem was fixed when I changed *output_buffering= On*. It doesn't work on the current host and I wonder why? Any suggestions? </p> <p>-the <a href="http://www.ucuzhizmet.com/phpinfo.php" rel="nofollow">phpinfo</a> of the current site.</p> <p><hr /></p> <p>Edit: Problem solved. I reverse-engineered the code and found some additional spaces after the php closing tag, before the sending of the headers. The code wasn't written by me and I instinctively ignored this option as the whole system worked already on another server. But my colleague did some changes I was unaware of...The lesson learned: teamwork is important and don't let anybody do the thinking for you. Still it is a mystery to me how come after trying everything to display errors and especially the "Cannot modify headers" they didn't display properly. I did everything you advised me to do- display errors, log them and so on...anyway thanks. </p> http://stackoverflow.com/questions/1053527/echoing-multiple-arguments-when-outputbuffering-is-on 2 echoing multiple arguments when output_buffering is on joebert 2009-06-27T20:10:38Z 2009-06-27T20:45:35Z <p>One of <em>Googles Let's make the internet faster</em> talks included something about using echo with multiple arguments in PHP instead of using print or string concatenation.</p> <pre><code>echo 'The ball is ', $color; </code></pre> <p>Rather than either of these</p> <pre><code>echo "The ball is $color"; echo 'The ball is ' . $color; </code></pre> <p>What if output buffering is in play ?</p> <p>What would be the difference between using echo with multiple arguments along with output buffering, vs using the alternate methods without output buffering ?</p> http://stackoverflow.com/questions/935978/python-modwsgi-output-buffer 0 Python Mod_WSGI Output Buffer Ian 2009-06-01T18:05:40Z 2009-06-01T23:41:08Z <p>This is a bit of a tricky question; </p> <p>I'm working with mod_wsgi in python and want to make an output buffer that yields HTML on an ongoing basis (until the page is done loading). </p> <p>Right now I have my script set up so that the Application() function creates a separate 'Page' thread for the page code, then immediately after, it runs a continuous loop for the Output Buffer using python's Queue lib.</p> <p>Is there a better way to have this set up? I thought about making the Output Buffer be the thread (instead of Page), but the problem with that, is the Application() function is the only function that can be yielding the HTML to Apache, which (as far as I can tell, makes this idea impossible).</p> <p>The downside I'm seeing with my current setup, is in the event of an error, I can't easily interrupt the buffer and exit without the Page thread continuing on for a bit.</p> <p>(It kinda sucks that mod_wsgi doesn't have a build in output buffer to handle this, I hate loading the entire page then sending output just once, it results in a much slower page load).</p> http://stackoverflow.com/questions/857153/cookies-are-not-being-set-properly-in-php-script 4 Cookies are Not Being Set Properly in PHP Script jazzrai 2009-05-13T10:16:03Z 2009-05-31T23:11:57Z <p>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:</p> <pre><code>&lt;?php session_start(); ?&gt; &lt;script&gt; function Redirect(url) { location.href = url; } &lt;/script&gt; &lt;?php define('_VALID_ACCESS', true); include_once "includes/connect.php"; include_once "includes/login.php"; if(empty($_POST['loginname']) || empty($_POST['password'])) { $msg = "User or password is empty"; } else { if(login($_POST['loginname'], $_POST['password']) == true) { $usern = $_POST['loginname']; session_register('loginname'); $loginname = $usern; sleep(1); if(activestatus($_POST['loginname'], $_POST['password']) == true) { $usern = $_POST['loginname']; session_register('loginname'); $loginname = $usern; sleep(1); $hour = time() + 3600; setcookie("ID_my_site", $_POST['loginname'], $hour); setcookie("Key_my_site", $_POST['password'], $hour); $test = $_COOKIE["ID_my_site"]; $msg = "&lt;script&gt; Redirect ('home.html?testname=".$test."')&lt;/script&gt;"; //header("Location: home.html"); } else { $msg = "&lt;script&gt; Redirect ('valid.php?testname=".$usern."')&lt;/script&gt;"; } } else { $msg = "&lt;font color=red&gt;User or Password is wrong&lt;/font&gt;"; } } echo '&lt;div id="divTarget"&gt;' . $msg . '&lt;/div&gt;'; ?&gt; &lt;link rel="stylesheet" href="css/blueprint/screen.css" type="text/css" media="screen, projection"&gt; &lt;link rel="stylesheet" href="css/blueprint/print.css" type="text/css" media="print"&gt; &lt;link rel="stylesheet" href="css/blueprint/ie.css" type="text/css" media="screen, projection"&gt; &lt;body&gt; &lt;div class="container" id="login_container"&gt; &lt;form id="login" action="action.php" method="post" name="loginform" &gt; &lt;fieldset id="login_screen" style="width:350px"&gt; &lt;label id="login_label" for="login"&gt;User Login &lt;/label&gt; &lt;br&gt;&lt;br&gt; &lt;label for="login"&gt;Email Address&lt;/label&gt; &lt;input type="text" name="loginname" id="loginname" value="email@coolmates.com"&gt; &lt;p id="space"&gt;&lt;label for="password"&gt;Password&lt;/label&gt; &lt;input type="password" id="password" name="password" value="********" &gt;&lt;/p&gt; &lt;input type="checkbox"&gt;Keep me signed in until i signout &lt;p id="test"&gt;&lt;input type="submit" value="Submit"&gt;&lt;/p&gt; &lt;a href="forgetpassword.html"&gt;Forgot your password&lt;/a&gt;&amp;nbsp;&amp;nbsp;|&lt;span id="free"&gt;Not a member?&lt;/span&gt;&lt;a href="regForm.html"&gt;Sign up&lt;/a&gt;&lt;blink&gt;&lt;span id="free"&gt;Free&lt;/span&gt;&lt;/blink&gt; &lt;/p&gt; &lt;/fieldset&gt; &lt;/form&gt; &lt;/div&gt; &lt;/body&gt; </code></pre> http://stackoverflow.com/questions/658040/output-buffering-in-php 0 Output buffering in PHP? Jordie 2009-03-18T12:23:06Z 2009-04-28T15:11:02Z <p>I seem to be confused about PHP output buffering. I have code like this:</p> <pre><code>function return_json($obj) { ob_get_clean(); ob_start(); header("Content-Type: application/json"); echo json_encode($obj); exit; } </code></pre> <p>But it doesn't seem to like the ob_get_clean(). I do that because some HTML might accidentally get generated before it gets to that point but I thought this was how you were meant to do it.</p> <p>What am I missing?</p> http://stackoverflow.com/questions/791464/keeping-a-live-connection-with-php 2 Keeping a live connection with php? teh_noob 2009-04-26T19:41:54Z 2009-04-26T20:16:25Z <p>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 works but i'm guessing its a huge strain on the server, and is probably considered ugly and bad practice. Am I right about that?</p> <p>Is there any way I could keep the connection to the script alive and make use of php's built in output buffering to flush the contents I need, but keep the script running for infinity using some sort of loop so when new data is available it can be output. Is this a bad idea as well?</p> <p>I'm just looking for input form developers out there with more experience.</p> <p>One last thing...</p> <p>Are there any other ways to keep a constant flow of data going (excluding technologies such as flash or silverlight)?</p> http://stackoverflow.com/questions/619557/streaming-output-to-a-file-and-the-browser 4 Streaming output to a file and the browser Allain Lalonde 2009-03-06T16:49:12Z 2009-03-06T18:50:47Z <p>So, I'm looking for something more efficient than this:</p> <pre><code>&lt;?php ob_start(); include 'test.php'; $content = ob_get_contents(); file_put_contents('test.html', $content); echo $content; ?&gt; </code></pre> <p>The problems with the above:</p> <ul> <li>Client doesn't receive anything until the entire page is rendered</li> <li>File might be enormous, so I'd rather not have the whole thing in memory</li> </ul> <p>Any suggestions?</p> http://stackoverflow.com/questions/222925/in-php-is-there-a-way-to-capture-the-output-of-a-php-file-into-a-variable-withou 4 In PHP, is there a way to capture the output of a PHP file into a variable without using output buffering? Joe Lencioni 2008-10-21T18:25:27Z 2008-10-23T10:06:28Z <p>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?</p> <p>Essentially I want to be able to accomplish this without using <code>ob_start()</code>:</p> <pre><code>&lt;?php ob_start(); include 'myfile.php'; $xhtml = ob_get_clean(); ?&gt; </code></pre> <p>Is this possible in PHP?</p> <p>Update: I want to do some more complex things within an output callback (where output buffering is not allowed).</p>