On Tue, January 15, 2008 12:39 pm, Janet N wrote:
> I'm trying to call java within php.  I have JAVA JRE 1.6 installed.
> The php
> I'm using is distributed by our partner so I couldn't configure it to
> use
> JAVA.

Modifying php.ini doesn't get the Java extension installed.

They have to PECL install Java extension for it to work.

You'll know if they have done that by checking <?php phpinfo();?>
output.  It either mentions Java, and it's installed; or it doesn't,
and it's not.

>  <?php
> // get instance of Java class java.lang.System in PHP
> $system = new Java('java.lang.System');

You don't have that class to instantiate, because you don't have the
extension installed.

-- 
Some people have a "gift" link here.
Know what I want?
I want you to buy a CD from some indie artist.
http://cdbaby.com/from/lynch
Yeah, I get a buck. So?

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to