From 5b510860f839c9978129b5f19990774266ad6423 Mon Sep 17 00:00:00 2001 From: Jakub Vrana Date: Wed, 4 May 2005 13:42:47 +0000 Subject: [PATCH] Add PHP closing tags (despite optional) git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@185782 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/runkit/sandbox.xml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/reference/runkit/sandbox.xml b/reference/runkit/sandbox.xml index 5b9dd9ab37..02e55e703e 100644 --- a/reference/runkit/sandbox.xml +++ b/reference/runkit/sandbox.xml @@ -1,5 +1,5 @@ - + @@ -112,6 +112,7 @@ $options = array( $sandbox = new Runkit_Sandbox($options); /* Non-protected ini settings may set normally */ $sandbox->ini_set('html_errors',true); +?> ]]> @@ -142,6 +143,7 @@ $sandbox->eval('echo "$foo\n"; $bar = $foo . "baz";'); echo "{$sandbox->bar}\n"; if (isset($sandbox->foo)) unset($sandbox->foo); $sandbox->eval('var_dump(isset($foo));'); +?> ]]> @@ -176,6 +178,7 @@ bool(false) $sandbox = new Runkit_Sandbox(); echo $sandbox->str_replace('a','f','abc'); +?> ]]> @@ -203,6 +206,7 @@ $foo = 'bar'; $sandbox->foo = 'baz'; echo $sandbox->str_replace('a',$foo,'a'); echo $sandbox->str_replace('a',$sandbox->foo,'a'); +?> ]]>