summaryrefslogtreecommitdiff
path: root/Examples/test-suite/php/argout_runme.php
diff options
context:
space:
mode:
Diffstat (limited to 'Examples/test-suite/php/argout_runme.php')
-rw-r--r--Examples/test-suite/php/argout_runme.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/Examples/test-suite/php/argout_runme.php b/Examples/test-suite/php/argout_runme.php
index 33fbd8129..8b66613fd 100644
--- a/Examples/test-suite/php/argout_runme.php
+++ b/Examples/test-suite/php/argout_runme.php
@@ -3,7 +3,7 @@
require "tests.php";
require "argout.php";
-check::functions(array(incp,incr,inctr,new_intp,copy_intp,delete_intp,intp_assign,intp_value,voidhandle,handle));
+check::functions(array('incp','incr','inctr','new_intp','copy_intp','delete_intp','intp_assign','intp_value','voidhandle','handle'));
$ip=copy_intp(42);
check::equal(42,incp($ip),"42==incp($ip)");
@@ -30,7 +30,7 @@ unset($handle);
#$handledata=handle($handle);
#check::equal($handledata,"Here it is","\$handledata != \"Here it is\"");
-unset($handle);
+$handle=NULL;
voidhandle($handle);
check::isnull($handle,'$handle not null');