Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

php output buffer

function callback($buffer)
{
  // replace all the apples with oranges
  return (str_replace("apples", "oranges", $buffer));
}

ob_start("callback");
Source by www.php.net #
 
PREVIOUS NEXT
Tagged: #php #output #buffer
ADD COMMENT
Topic
Name
6+8 =