#!/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);
}
}
$ser="vector.ser";
// load the session from the disc
if(file_exists($ser)) {
$file=fopen($ser,"r");
$id=fgets($file);
fclose($file);
try {
$v=unserialize($id);
} catch (JavaException $e) {
echo "Could not deserialize: ". $e->getCause() . "\n";
$v=null;
}
}
// either a new session or previous session destroyed
if(!$v) {
echo "creating new session\n";
$vector=new java("java.util.Vector", array(1, true, -1.345e99, "hello", new java("java.lang.Object")));
$v=array (
"test",
$vector,
new java("java.lang.String", "HelloWorld"),
3.14,
new java("java.lang.Object"));
$id=serialize($v);
$file=fopen($ser,"w");
fwrite($file, $id);
fclose($file);
} else {
echo "cont. session\n";
}
echo $v[1]->toString()."\n". $v[2]->toString()."\n";
?>