jsgoupil Mon Jun 6 20:44:46 2005 EDT
Modified files:
/phpdoc/en/reference/runkit/functions
runkit-sandbox-output-handler.xml
Log:
missing ) + example diff with output
http://cvs.php.net/diff.php/phpdoc/en/reference/runkit/functions/runkit-sandbox-output-handler.xml?r1=1.1&r2=1.2&ty=u
Index: phpdoc/en/reference/runkit/functions/runkit-sandbox-output-handler.xml
diff -u
phpdoc/en/reference/runkit/functions/runkit-sandbox-output-handler.xml:1.1
phpdoc/en/reference/runkit/functions/runkit-sandbox-output-handler.xml:1.2
--- phpdoc/en/reference/runkit/functions/runkit-sandbox-output-handler.xml:1.1
Fri Jun 3 20:47:35 2005
+++ phpdoc/en/reference/runkit/functions/runkit-sandbox-output-handler.xml
Mon Jun 6 20:44:45 2005
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.1 $ -->
+<!-- $Revision: 1.2 $ -->
<refentry id="function.runkit-sandbox-output-handler">
<refnamediv>
<refname>runkit_sandbox_output_handler</refname>
@@ -16,7 +16,7 @@
</methodsynopsis>
<para>
Ordinarily, anything output (such as with <function>echo</function>
- or <function>print</function> will be output as though it were printed
+ or <function>print</function>) will be output as though it were printed
from the parent's scope. Using
<function>runkit_sandbox_output_handler</function>
however, output generated by the sandbox (including errors), can be captured
by a function outside of the sandbox.
@@ -86,7 +86,7 @@
$php->die("I lost myself.");
unset($php);
-echo "Sandbox complete\n\n";
+echo "Sandbox Complete\n\n";
echo $sandbox_output;
?>
]]>