<?phpfunction callback($buffer) {
  // replace all the apples with oranges
  return (str_replace("apples", "oranges", $buffer));
}ob_start("callback");?><html>
<body>
<p>It's like comparing apples to oranges.
</body>
</html><?phpob_end_flush();?>