The PHP/Java Bridge
is an optimized XML protocol which can be used to connect a native script engine with a Java or ECMA 335 virtual machine. The php java extension uses this protocol to connect running PHP instances with already running Java or .NET backends. The communication works in both directions, the JSR 223 interface can be used to connect to a running PHP server (Apache/IIS, FastCGI, ...) so that Java components can call PHP instances and PHP scripts can invoke CLR (e.g. VB.NET, C#, COM) or Java (e.g. Java, KAWA, JRuby) based applications or transfer control back to the environment where the request came from. The bridge can be set up to automatically start the PHP frontend or the Java/.NET backend, if needed.
Each request-handling PHP process of a multi-process HTTP
server communicates with a corresponding thread spawned by the VM.
Requests from more than one HTTP server may either be routed to an
application server running the PHP/Java Bridge or each HTTP server may
own a PHP/Java Bridge and communicate with a J2EE java application
server by exchanging java value objects; the necessary client-stub
classes (ejb client .jar) can be loaded at run-time. ECMA 335 based classes can be accessed if at least one
backend is running inside a ECMA complient VM, for example Novell's
MONO or Microsoft's .NET. Special features such as varargs,
reflection or assembly loading are also supported. When the backend is running in a J2EE environment, session
sharing between PHP and JSP is always possible. Clustering and load
balancing is available if the J2EE environment supports these
features. Unlike previous attempts (the ext/java or the JSR 223 sample
implementation) the PHP/Java Bridge does not use the java
native interface ("JNI"). Php instances are allocated from the HTTP
(Apache/IIS) pool, instances of java/j2ee components are allocated
from the backend. The allocated instances communicate using a
"continuation passing style", see PHP components are essentially transient. For complex
applications is usually necessary to introduce "middleware" components
such as (enterprise-) "java beans" or enterprise applications which
provide caching, connection pooling or the "business logic" for the
pages generated by the PHP components. Parsing XML files for example
is an expensive task and it might be necessary to cache the generated
graph. Establishing connections to databases is an expensive operation
so that it might be necessary to re-use used connections. The standard
PHP XML or DB abstractions are useless in this area because they
cannot rely on a middle tier to do caching or db connection pooling.
Even for trivial tasks it might be necessary to use a java
class or java library. For example it might be necessary to generate
Word, Excel or PDF documents without tying the application to a
specific system platform. PHP, the PHP/Java Bridge and the php files can be packaged
within a standard J2EE archive, customers can easily deploy it into a
J2EE application server or servlet engine. They don't have to install
PHP and they usually cannot tell the difference whether the pages are
generated by PHP, JSP or servlets. Since the bridge allows session
sharing between PHP and the J2EE components, developers can migrate
their JSP based solutions to PHP step by step. PHP and the PHP/Java Bridge might also be interesting for
java developers. There are a number of technologies based on the JSP
template system such as jakarta Struts and its successor Java Server
Faces. Since PHP/Java Bridge version 3.0 it is possible to embed
php scripts into the JSF framework, so that UI developers can
concentrate on developing HTML templates while web developers can
create a prototype using php code and use the existing framework from
their code.
The bridge adds the following primitives to PHP. The type
mappings are shown in table 1.
java_closure()
and the invocable interface. In
case a php instance crashes, it will not take down the java
application server or servlet engine. Motivation
Description
new Java("CLASSNAME")
: References and instanciates the class CLASSNAME.
After script
execution the referenced classes may be garbage collected. Example:
<?php
$v = new Java("java.util.Vector");
$v->add($buf=new Java("java.lang.StringBuffer"));
$buf->append("100");
echo (int)($v->elementAt(0)->toString()) + 2;
?>
new JavaClass("CLASSNAME")
: References the class CLASSNAME without creating an instance. The returned object is the class object itself, not an object of the class.
After script
execution the referenced classes may be garbage collected. Example:
$Object = new JavaClass("java.lang.Object");
$obj = $Object->newInstance();
$Thread = new JavaClass("java.lang.Thread");
$Thread->sleep(10);
java_require("JAR1;JAR2")
: Makes additional libraries
available to the current script. JAR can either be
a "http:", "ftp:", "file:" or a "jar:" or a default location. On "Security Enhanced Linux" (please see the README) the location must be tagged with a lib_t security context. Example:
// load scheme interpreter
// try to load it from /usr/share/java/ or from sourceforge.net
java_require("kawa.jar");
java_require("http://php-java-bridge.sourceforge.net/kawa.jar");
$n=100;
$System = new JavaClass("java.lang.System");
$t1 = $System->currentTimeMillis();
$code="(letrec ((f (lambda(v) (if (= v 0) 1 (* (f (- v 1)) v))))) (f $n))";
$scheme = new java("kawa.standard.Scheme");
$res=(float)$scheme->eval($code);
echo "${n}! => $res\n";
$delta = $System->currentTimeMillis() - $t1;
echo "Evaluated in $delta ms.\n";
java_context()
: Makes the javax.script.ScriptContext
available to the current script. All implicit web objects (session, servlet context, etc.) are available from the context, when the backend is running in a servlet engine or application server. The following example uses the jdk1.6 jrunscript
to eval php statements interactively:
/opt/jdk1.6/bin/jrunscript -l php-intractive
php-interactive> echo java_context()->getAttribute("javax.script.name");
=> STDIN
java_closure(ENVIRONMENT, MAP, TYPE)
: Makes it possible to call PHP code from java. It closes over the PHP environment and packages it up as a java class. If the ENVIRONMENT is missing, the current environment is used. If MAP is missing, the PHP procedures must have the same name as the required procedures. If TYPE is missing, the generated class is "generic", i.e. the interface it implements is determined when the closure is applied. Example:
<?php
function toString() { return "hello" ; }
echo (string)java_closure();
?>
=> hello
Example which uses PHP and Mono:
class GtkDemo {
var $Application;
function GtkDemo() {
mono_require("gtk-sharp"); // link the gtk-sharp library
}
function delete($sender, $e) {
echo "delete called\n";
$this->Application->Quit();
}
function clicked($sender, $e) {
echo "clicked\n";
}
function init() {
$this->Application = $Application = new Mono("Gtk.Application");
$Application->Init();
$win = new Mono("Gtk.Window", "Hello");
$win->add_DeleteEvent (
new Mono(
"GtkSharp.DeleteEventHandler",
mono_closure($this, "delete")));
$btn = new Mono("Gtk.Button", "Click Me");
$btn->add_Clicked(
new Mono(
"System.EventHandler",
mono_closure($this, "clicked")));
$win->Add($btn);
$win->ShowAll();
}
function run() {
$this->init();
$this->Application->Run();
}
}
$demo = new GtkDemo();
$demo->run();
$session=java_session()
: Creates or retrieves a session context. When the backend is running in a J2EE environment, the session is taken from the request object, otherwise it is taken from PHP. Please see the ISession interface documentation for details. The java_session()
must be called before the response headers have been sent and it should be called as the first statement within a php script.
$session = java_session();
$servletRequest = $session->getHttpServletRequest();
$servletRequest->setAttribute(...);
...
$session=java_session(SESSIONNAME)
:
Creates or retrieves the session SESSIONNAME
. This
primitive uses a "private" session store with the name
SESSIONNAME. Please see the ISession
interface documentation for details. For java values
$_SESSION['var']=val
is syntactic shugar for
java_session(session_id())->put('var', val)
.
The
$session=java_session("testSession");
if($session->isNew()) {
echo "new session\n";
$session->put("a", 1);
$session->put("b", 5);
} else {
echo "cont session\n";
}
$session->put("a", $session->get("a")+1);
$session->put("b", $session->get("b")-1);
$val=$session->get("a");
echo "session var: $val\n";
if($session->get("b")==0) $session->destroy();
java_session
primitive is meant for values which must survive the current script. If you want to cache data which is expensive to create, bind the data to a class. Example:
// Compile this class, create cache.jar and copy it to /usr/share/java
public class Cache {
public static Cache instance = makeInstance();
}
<?php
java_require("cache.jar");
$Cache = new JavaClass("Cache");
$instance=$Cache->instance; //instance will stay in the VM until the VM runs short of memory
?>
JavaException
: A java exception class. Available in PHP 5 and
above only. Example:
try {
new java("java.lang.String", null);
} catch(JavaException $ex) {
$trace = new java("java.io.ByteArrayOutputStream");
$ex->printStackTrace(new java("java.io.PrintStream", $trace));
print "java stack trace: $trace\n";
}
foreach(COLLECTION)
: It is possible to iterate over values of java classes that implement java.util.Collection or java.util.Map. Available in PHP 5 and above only. Example:
$conversion = new java("java.util.Properties");
$conversion->put("long", "java.lang.Byte java.lang.Short java.lang.Integer");
$conversion->put("boolean", "java.lang.Boolean");
foreach ($conversion as $key=>$value)
echo "$key => $value\n";
[index]
: It is possible to access elements of java arrays or elements of java classes that implement the java.util.Map interface. Available in PHP 5 and above only. Example:
$Array = new JavaClass("java.lang.reflect.Array");
$String = new JavaClass("java.lang.String");
$entries = $Array->newInstance($String, 3);
$entries[0] ="Jakob der Lügner, Jurek Becker 1937--1997";
$entries[1] ="Mutmassungen über Jakob, Uwe Johnson, 1934--1984";
$entries[2] ="Die Blechtrommel, Günter Grass, 1927--";
for ($i = 0; $i < $Array->getLength($entries); $i++) {
echo "$i: " . $entries[$i] ."\n";
}
java_instanceof(JAVA_OBJ, JAVA_CLASS)
: Tests if JAVA_OBJ is an instance of JAVA_CLASS. Example:
$Collection=new JavaClass("java.util.Collection");
$list = new java("java.util.ArrayList");
$list->add(0);
$list->add(null);
$list->add(new java("java.lang.Object"));
$list->add(new java("java.util.ArrayList"));
foreach ($list as $value) {
if($value instanceof java && java_instanceof($value, $Collection))
/* iterate through nested ArrayList */
else
echo "$value\n";
}
java_last_exception_get()
: Returns the last exception instance or
null. Since PHP 5 you can use try/catch
instead.
java_last_exception_clear()
: Clears the error condition. Since PHP 5 you can use try/catch
instead.
PHP | Java | Description | Example |
---|---|---|---|
object | java.lang.Object | An opaque object handle. However, we guarantee that the first handle always starts with 1 and that the next handle is n+1 (useful if you work with the raw XML protocol, see the python and scheme examples). | $buf=new java("java.io.ByteArrayOutputStream"); $outbuf=new java("java.io.PrintStream", $buf); |
null | null | NULL value | $outbuf->println(null); |
exact number | integer (default) or long, depending on the flag java.ext_java_compatibility. | 64 bit data on protocol level, coerced to 32bit int/Integer or 64bit long/Long | $outbuf->println(100); |
boolean | boolean | boolean value | $outbuf->println(true); |
inexact number | double | IEEE floating point | $outbuf->println(3.14); |
string | byte[] | binary data, unconverted | $bytes=$buf->toByteArray(); |
string | java.lang.String | An UTF-8 encoded string. Since PHP does not support unicode, all java.lang.String values are auto-converted into a byte[] (see above) using UTF-8 encoding. The encoding can be changed with the java_set_file_encoding() primitive. | $string=$buf->toString(); |
array (as array) | java.util.Collection or T[] | PHP4 sends and receives arrays as values. PHP5 sends arrays as values and receives object handles which implement the new iterator and array interface. | // pass a Collection to Vector $ar=array(1, 2, 3); $v=new java("java.util.Vector", $ar); echo $v->capacity(); // pass T[] to asList() $A=new JavaClass("java.util.Arrays"); $lst=$A->asList($ar); echo $lst->size(); |
array (as hash) | java.util.Map | PHP4 sends and receives hashtables as values. PHP5 sends hashtables as values and receives object handles which implement the new iterator interface. | $h=array("k"=>"v", "k2"=>"v2"); $m=new java("java.util.HashMap",$h); echo $m->size(); |
JavaException | java.lang.Exception | A wrapped exception class. The original exception can be retrieved with $exception->getCause(); | ... catch(JavaException $ex) { echo $ex->getCause(); } |
Custom java libraries (.jar files) can be stored in the following
locations:
.jar
files can only be loaded from locations which are tagged with the lib_t security context.
/usr/share/java/
directory, if it exists and is accessible
when the JVM starts the bridge. On Security Enhanced Linux this directory is tagged with the lib_t security context.
The PHP/Java Bridge can operate in 4 different modes: Furthermore the PHP/Java Bridge can be: If
you have a RedHat Linux system (RedHat Enterprise or
Fedora), you can download the 32bit RPM and type Make sure you
have java version 1.4.2 or higher, gcc 3.2 or higher, apache 1.3 or
higher, autoconf 2.57 or higher, libtool 1.4.3 or higher, automake 1.6.3 or higher, GNU make and php 4.3.2 or higher
installed. You can check the version numbers with the commands Download
the source code of the bridge from
http://www.sourceforge.net/projects/php-java-bridge Extract the file
with the command: In
the directory php-java-bridge-v.x.y build the module:
Then
install the module as root. Type: Restart
the apache service with the command: You can now test
the web installation. Copy the test.php file to the document root (usually /var/www/html) and invoke the file with your browser. You should see that the bridge module is activated and running. The bridge backend automatically starts or re-starts whenever you start or re-start the web-server.
In a production environment it is recommended to separate the java VM and the HTTP process by setting the communication channel. The
Installation
instructions
rpm -i
php-java-bridge-v.x.y-1-i386.rpm php-java-bridge-standalone-v.x.y-1-i386.rpm
to install it (if you run a 64bit system and a 64bit JVM you need to install the 64bit RPM instead). For other operating systems please follow
the instructions below (on Security Enhanced Linux please use the RPM or please read the README before installation).
java
-version
, gcc --version
, apachectl -version
, libtool --version
, automake --version
, make null --version
, autoconf --version
and
php-config --version
.
cat php-java-bridge_v.x.y.tar.bz2 | bunzip2 |
tar xf -
phpize && ./configure
--with-java=/usr/java/default && make
su -c 'sh
install.sh'
<enter password>apachectl restart
java.socketname
should be set to the name of the socket, it will be created if it doesn't exist. The java section of the php .ini
file should contain a java.socketname
option. The following is an example from RedHat Enterprise Linux and Fedora:
extension = java.so
[java]
java.socketname="/var/run/.php-java-bridge_socket"
The advantage of this mode is that the java VM no longer depends on the web server and can be examined and re-started independently. The download file contains a script, php-java-bridge.service
, which can be used to start/stop the PHP/Java Bridge backend as system service. All available .ini
options are listed in table 2.
.ini
options
Name | Default | Description | Example |
---|---|---|---|
java.java_home | compile time option. | The java installation directory. | java.java_home="/opt/jdk1.5" |
java.java | compile time option. | The java executable. | java.java="/opt/jdk1.5/jre/bin/java" |
java.socketname | /var/run/.php-java-bridge_socket | The name of the communication channel for the local backend. Must be an integer, if a secure "unix domain" channel is not available (Windows, Mac OSX). | java.socketname="9167" |
java.log_level | 1 | The log level from 0 (log off) to 4 (log debug). | java.log_level="3" |
java.log_file | /var/log/php-java-bridge.log | The log file for the local PHP/Java Bridge backend. | java.log_file="/tmp/php-java-bridge.log" |
java.hosts | <none> | Additional bridge hosts which are used when the local backend is not available. | java.hosts="127.0.0.1:9168;127.0.0.1:9169" |
java.servlet | Off | The communication protocol. If set to On or to User , the bridge uses HTTP to communicate with the java.hosts backends. The option User preserves the context, On is for backward compatibility and rewrites the context to: /JavaBridge/JavaBridge.php . | ;; Make sure that this option is only set java.servlet=User |
java.classpath | compile time option. | The java classpath. Please do not change the default value | java.classpath="/tmp/myJavaBridge.jar:/tmp/myCasses/" |
java.libpath | compile time option. | The directory which contains the natcJavaBridge.so used for local ("unix domain") sockets. Please do not change the default value. | java.libpath="/tmp/" |
java.ext_java_compatibility | Off | Since version 3 the bridge is no longer backward compatible to its predecessor "ext/java": Exact php numbers are now represented as java integers, java return values are no longer auto-converted into php values. Leave it off, if possible. | java.ext_java_compatibility=On |
For further information please read the README, INSTALL, INSTALL.LINUX, INSTALL.J2EE and INSTALL.WINDOWS documents contained in the download files.
The NEWS file lists the latest user visible changes, development documentation can be found in the documentation
and server/documentation
folder.
Please follow the instructions from the
INSTALL document as close as possible. In particular the backend needs the specified versions of autoconf, libtool and automake in the path. Backend compilation can be switched off with the On RPM based Security Enhanced Linux
installations (RHEL, Fedora) please install one of the binary RPM's or
compile a binary RPM from the source RPM using the command:
On
recent Debian X86 installations, Ubuntu for example, it is also
possible to install the RPM binaries: Open the appropriate binary RPM
with a file manager and drag and drop the contents of the Yes. Simply ommit the
No. The bridge backend is written in pure java, it
doesn't use any native code. Native PHP runs within Apache, IIS, a
FCGI server or via CGI. If the PHP instance crashes, an error page is
returned to the client and a new PHP instance is started for the next
request. If you must code it yourself: with
e.g. If you use the Java Server Faces
framework, you declare the scope of the script in the php
managed bean descriptor. For example if the
Request-handling threads are started
from a thread pool, which limits the number of user requests to 20
(default), see system property
When
running in a servlet engine, a ContextServer
is started which handles the pipe or local socket communication
channel. When java invokes local scripts outside of a HTTP
environment, the bridge starts a HttpServer,
a ContextServer
and a HttpProxy. The
HttpProxy represents the php continuation and the HttpServer the
request-handling java continuation associated with the JSR223 script.
Usually with a java policy
file. An example file will ship with version 3.0.9.
The bridge doesn't compile
on my system!?!
--disable-backend
configure option. A compiled, platform-independent backend ("JavaBridge.war") can be found in the download folder.
If there are problems compiling the bridge code against any PHP version >= 4.3.4 on Windows,
Linux/Unix or MacOS, please do not report this problem to the
mailing list. Please open
a problem report instead (you don't need an account to submit a
problem report).rpmbuild --rebuild php-java-bridge*src.rpm
lib/php
directory to /usr/lib/php
and restart apache.Can I use java libraries without
installing java?
--with-java=
configure option. The bridge will use the
libgcj
library, which is part of the GNU gcc compiler, to
interpret java libraries. This library also uses much less system
resources (memory, files) than a "real" java VM.Does the
bridge run native code within my servlet engine or application
server?
How do I make my script state (objects or
variables) persistent?
java_session()->put("buf", $stringBuffer)
or via
$_SESSION["buf"]=$stringBuffer
. The
$_SESSION
is syntactic shugar provided by the php session
module, it uses java_session()
internaly. If you don't want depend on the php session module, for
example if you have compiled php without the session.so
,
use java_session() instead.managed-bean-scope
is changed from request
to session
, the framework automatically saves the state
of the php script instance and restores it when the next request
belonging to the same session comes in.How many threads
does the bridge start?
php.java.bridge.threads
. All further requests have to
wait until one of the worker threads returns to the pool. How do I lock down the VM so that users cannot start
threads or call System.exit?
Where is my output?
System.out
and System.err
are redirected to the server log file(s). When php scripts are invoked from a java framework (Java Server Faces for example), even the php output is redirected. For the standalone backend the output appears in the /var/log/php-java-bridge.log
or in JavaBridge.log, see .ini option java.log_file
. For the j2ee backend the location of the log file(s) depends on the j2ee server configuration.How do I access enums or inner classes?
With the classname$inner
syntax. For example
public interface php {
public class java {
public enum bridge {JavaBridge, JavaBridgeRunner};
}
}
can be accessed with:
<?php
java_require(getcwd()); // load php.class
$bridge = new java('php$java$bridge');
echo $bridge->JavaBridgeRunner;
?>
The above code is not a good programming example but it demonstrates why a different syntax is used to access inner classes.
Primitive types are wrapped by associated java classes.
The following example uses reflect.Array
to create a new byte
array:
$Byte = new JavaClass("java.lang.Byte");
$byte = $Byte->TYPE;
$Array = new JavaClass("java.lang.reflect.Array");
$byteArray = $Array->newInstance($byte, 255);
$System = new JavaClass("java.lang.System");
$length = $System->in->read($byteArray);
$str = new Java("java.lang.String, $byteArray, 0, $length);
echo "You have typed: $str\n";
The following scripts were executed on one 1.688 GHZ x86 cpu running RedHat Fedora Core 4 Linux and Sun jdk1.6.0:
The PHP 5.1.2 code
<?php
$String = new JavaClass("java.lang.String");
$buf=new java("java.lang.StringBuffer");
$i=0;
java_begin_document();
while($i<400000) {
$i=$i+1;
$buf->append(new java("java.lang.String", $String->valueOf($i)));
}
java_end_document();
print $buf->length() . "\n";
?>
from java import lang
buf = lang.StringBuffer();
i=0
while i<400000:
i=i+1
buf.append(lang.String(lang.String.valueOf(i)));
print buf.length();
buf = new java.lang.StringBuffer();
for(i=0; i<400000; i++) buf.append(new String(i));
print (buf.toString().length());
Command | Script Engine | Communication Channel | Execution time (real, user, sys) |
---|---|---|---|
time jrunscript -l php t11.php | PHP5 + PHP/Java Bridge 3.0.8 | named pipes | 0m20.112s, 0m18.999s, 0m0.651s |
java -jar JavaBridge.jar INET:9967 & time php t11.php | PHP5 + PHP/Java Bridge 3.0.8 | TCP Sockets, client and server running on the same CPU | 0m22.407s, 0m9.848s, 0m0.145s |
java -jar JavaBridge.jar INET:9967 & time php t11.php | PHP5 + PHP/Java Bridge 3.0.8 | TCP Sockets, client and server running on different machines | 0m31.507s, 0m26.460s, 0m3.567s |
time jrunscript -J-Xmx512M -J-Xms512M -l js t11.js | ECMA script | none (native code) | 1m36.877s, 0m55.398s, 0m0.323s |
time java -classpath jython.jar org.python.util.jython t11.py | Jython 2.1 | none (native code) | 0m6.725s, 0m6.551s, 0m0.107s |
If you want to start one persistent VM per HTTP server running on a computer, see the web server installation description. If you want to start one persistent VM per computer, please see Linux RPM package or the application server or servlet engine description.
Furthermore it is possible to start standalone backend, for example with the command:
java -jar JavaBridge.jar INET_LOCAL:9676 3
The php.ini
entry might look like:
[java]
java.hosts = 127.0.0.1:9676
java.servlet = Off
Please see the JavaBridge documentation for details.
The bridge uses a wrapper binary which can carry the SUID bit and can be tagged with the SEL security context. This wrapper also allows you to change the standard options, which are: java -Djava.library.path=... -Djava.class.path=... -Djava.awt.headless=true php.java.bridge.JavaBridge SOCKET_NAME LOG_LEVEL LOG_FILE
.
A custom wrapper can be set with:
java.wrapper=/path/to/wrapper/binary
On Unix the bridge terminates the sub-process hierarchy with SIGTERM
, sleep 5 seconds and SIGTERM
, if necessary, sleep 5 seconds and SIGKILL
, if necessary. On Windows the bridge emulates the Unix kill behaviour, the bridge kills the entire sub-process hierarchy so that you can use a cmd /c
wrapper.
Please see the JavaWrapper
from the RedHat php-java-bridge-standalone
RPM for an example.
Download the J2EE binary and copy the JavaBridge.war
into the tomcat webapps
folder. After that visit http://localhost:8080/JavaBridge
and run the supplied php examples.
Please see webapps/JavaBridge/WEB-INF/cgi/README
for details.
OutOfMemoryErrors may happen because a cached variable cannot be released, either because
When a java.lang.OutOfMemoryError
reaches the request-handling thread, the PHP/Java Bridge thread pool removes the thread from its pool and writes a message FATAL: OutOfMemoryError
to the PHP/Java Bridge log file. The session store is cleaned and all client connections are terminated without confirmation.
If the OutOfMemoryError persists, this means that a thread outside of the PHP/Java Bridge has caused this error condition.
The following code example could cause an OutOfMemoryError:
<?php
session_start();
if(!$_SESSION["buffer"]) $_SESSION["buffer"]=new java("java.lang.StringBuffer");
$_SESSION["buffer"]->append(...);
?>
OutOfMemory conditions can be debugged by running the backend with e.g.:
java -agentlib:hprof=heap=sites -jar JavaBridge.jar
With java_values()
or with settype
. Examples:
$str = new java("java.lang.String", "hello");
echo $str;
=> [o(String):"hello"]
echo (java_values($str));
=> hello
print_r (java_values($str->toCharArray()));
=> array('h', 'e', 'l', 'l', 'o')
settype($str, "string");
echo $str;
=> hello
$vector = new java("java.util.Vector", array("foo"=>1,"bar"=>2));
settype($vector, "array");
print_r ($vector);
=> array(foo=>1, bar=>2)
settype($vector, "object");
echo $vector->bar;
=> 2