1
vote
2answers
53 views
how to pre-process a PHP MVC view without using the framework?
Is there any way I can pre-process a PHP view script without using a particular MVC framework?
Basically I want to render the view and pass it as an HTML string to another view. The view I'm trying …
0
votes
5answers
228 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>
…
1
vote
3answers
81 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 …
-1
votes
2answers
67 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
1answer
150 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 …
2
votes
4answers
114 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 …
4
votes
2answers
86 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
139 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();
…
0
votes
3answers
422 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;
…
0
votes
2answers
119 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 …
4
votes
4answers
330 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
6answers
272 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 …
2
votes
5answers
210 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 …
4
votes
3answers
224 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 …
