Menu

[r321]: / trunk / php-java-bridge / tests.php4 / noClassDefFound.php  Maximize  Restore  History

Download this file

25 lines (19 with data), 417 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/usr/bin/php
<?php
if (!extension_loaded('java')) {
if (!(PHP_SHLIB_SUFFIX=="so" && dl('java.so'))&&!(PHP_SHLIB_SUFFIX=="dll" && dl('php_java.dll'))) {
echo "java extension not installed.";
exit(2);
}
}
$here=getcwd();
java_require("$here/noClassDefFound.jar");
$v=new java("NoClassDefFound");
echo $v->s . "\n";
if($v->s=="test okay") {
exit(0);
} else {
echo "test failed\n";
exit(1);
}
?>