0
votes
5answers
133 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>...&l …
1
vote
3answers
54 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 se …
2
votes
4answers
97 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 …
0
votes
1answer
67 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 …
-1
votes
2answers
49 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 …
4
votes
2answers
71 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 …
0
votes
3answers
115 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();
preg_match(' …
0
votes
3answers
331 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 …
2
votes
2answers
71 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 ba …
4
votes
4answers
291 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&g …
0
votes
2answers
107 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).
…
2
votes
5answers
198 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 …
0
votes
6answers
246 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");
…
4
votes
3answers
155 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 $co …
4
votes
7answers
567 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 a …
