vrana Wed May 4 09:42:47 2005 EDT
Modified files:
/phpdoc/en/reference/runkit sandbox.xml
Log:
Add PHP closing tags (despite optional)
http://cvs.php.net/diff.php/phpdoc/en/reference/runkit/sandbox.xml?r1=1.6&r2=1.7&ty=u
Index: phpdoc/en/reference/runkit/sandbox.xml
diff -u phpdoc/en/reference/runkit/sandbox.xml:1.6
phpdoc/en/reference/runkit/sandbox.xml:1.7
--- phpdoc/en/reference/runkit/sandbox.xml:1.6 Tue May 3 16:09:42 2005
+++ phpdoc/en/reference/runkit/sandbox.xml Wed May 4 09:42:47 2005
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.6 $ -->
+<!-- $Revision: 1.7 $ -->
<!-- Generated by xml_proto.php v2.2. Found in /scripts directory of phpdoc.
-->
<refentry id="runkit.sandbox">
<refnamediv>
@@ -112,6 +112,7 @@
$sandbox = new Runkit_Sandbox($options);
/* Non-protected ini settings may set normally */
$sandbox->ini_set('html_errors',true);
+?>
]]>
</programlisting>
</example>
@@ -142,6 +143,7 @@
echo "{$sandbox->bar}\n";
if (isset($sandbox->foo)) unset($sandbox->foo);
$sandbox->eval('var_dump(isset($foo));');
+?>
]]>
</programlisting>
</example>
@@ -176,6 +178,7 @@
$sandbox = new Runkit_Sandbox();
echo $sandbox->str_replace('a','f','abc');
+?>
]]>
</programlisting>
</example>
@@ -203,6 +206,7 @@
$sandbox->foo = 'baz';
echo $sandbox->str_replace('a',$foo,'a');
echo $sandbox->str_replace('a',$sandbox->foo,'a');
+?>
]]>
</programlisting>
</example>