Tagged Questions

0
votes
5answers
214 views

HTML into PHP Variable (HTML outside PHP code)

Hi, I am new to php and wondering if I can have something like this: <?php ... magicFunctionStart(); ?> <html> <head>...</head> <body>...</body> …
2
votes
4answers
110 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 …
1
vote
3answers
79 views

Should I leave output_buffering On or Off in a Production Environment?

I'm about to launch a website and I'm going over my php.ini to prepare all the settings for a production environment. I'm debating whether to leave output_buffering On, Off, or set it to a buffer …
0
votes
1answer
138 views

Unbuffered CreateNamedPipe for use as stdout for CreateProcess

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 …
-1
votes
2answers
64 views

Problems with output buffering in php

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. Essentially the script does a for loop which does two to three …
0
votes
3answers
133 views

Get content between two strings PHP

Whats is the best way to obtain the content between two strings e.g. ob_start(); include('externalfile.html'); ## see below $out = ob_get_contents(); ob_end_clean(); …
4
votes
2answers
81 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 …
0
votes
3answers
410 views

Problem with output_buffering and php.ini.

Hi, when trying to log-in at this site (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 …
2
votes
2answers
76 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; …
4
votes
4answers
323 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 …
0
votes
2answers
116 views

Python Mod_WSGI Output Buffer

This is a bit of a tricky question; 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). Right now I have my …
2
votes
5answers
209 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 …
0
votes
6answers
267 views

Output buffering in PHP?

I seem to be confused about PHP output buffering. I have code like this: function return_json($obj) { ob_get_clean(); ob_start(); header("Content-Type: application/json"); echo …
4
votes
3answers
213 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
7answers
598 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 …