summaryrefslogtreecommitdiffstats
path: root/src/bindings/swig/php/test.php
blob: 66ad658f1af1a8dcc43f8bcecbaf0e5283287dd4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<?php
$exts = get_loaded_extensions();	
foreach ($exts as $e)
{
	echo "Name: ".$e." --";
	print_r(get_extension_funcs($e));
}

$interpreter = interpreter_fromuri('/Users/sradomski/Documents/TK/Code/uscxml/test/samples/uscxml/test-ecmascript.scxml');
interpreter_interpret($interpreter);

?>