import source from 1.3.40
[external/swig.git] / Examples / test-suite / php / arrays_scope_runme.php
1 <?php
2
3 require "tests.php";
4 require "arrays_scope.php";
5
6 // No new functions
7 check::functions(array(new_bar,bar_blah));
8 // No new classes
9 check::classes(array(arrays_scope,Bar));
10 // now new vars
11 check::globals(array());
12
13 $bar=new bar();
14
15 check::done();
16 ?>