/tags/rel-1-3-25/SWIG/Examples/php4/sync/runme.php4
PHP | 15 lines | 8 code | 6 blank | 1 comment | 0 complexity | 954004e01e8c0aba98b6832067674bd6 MD5 | raw file
Possible License(s): LGPL-2.1, Cube, GPL-3.0, 0BSD, GPL-2.0
1<? 2 3// Load module and PHP classes. 4include("example.php"); 5 6echo "Got new object\n"; 7echo "Got string $s and value $x \n"; 8 9$s = new Sync(); 10echo "Got new object\n"; 11 12$s->printer(); 13 14?> 15