Menu

[r966]: / branches / Release-6-0-0 / php-java-bridge / tests.php5 / callback1.php  Maximize  Restore  History

Download this file

39 lines (35 with data), 741 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
#!/usr/bin/php
<?php
require_once ("java/Java.inc");
class c {
function c1($s1, $o1) {
echo "c1: $s1, $o1\n";
// must not display a php warning
throw new JavaException("java.lang.Exception", "bleh!");
// 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=realpath(dirname($_SERVER["SCRIPT_FILENAME"]));
if(!$here) $here=getcwd();
java_require("$here/callback.jar");
$c=new c();
$closure=java_closure($c, null, java("Callback"));
$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.