summaryrefslogtreecommitdiffstats
path: root/src/bindings/swig/php/test.php
blob: 2700deddb5ee4e7e3dadc4a87bfeca877e7df934 (plain)
1
2
3
4
5
6
7
8
9
10
11
<?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');

?>