Menu

[r484]: / trunk / php-java-bridge / tests.php4 / callback.php  Maximize  Restore  History

Download this file

41 lines (36 with data), 787 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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#!/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);
}
}
function c1($s1, $o1) {
echo "c1: $s1, $o1\n";
// must display a warning
$var=new java("java.lang.String", null); if(java_last_exception_get()) return;
// not reached
echo "ERROR.\n";
exit(3);
}
function c2($b) {
echo "c2: $b\n";
return $b;
}
function c3 ($e) {
echo "c3: $e\n";
return 2;
}
$here=getcwd();
java_require("$here/../tests.php5/callback.jar");
$closure=java_closure();
$callbackTest=new java('Callback$Test', $closure);
if($callbackTest->test()) {
echo "test okay\n";
exit(0);
} else {
echo "test failed\n";
exit(1);
}
?>
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.