I just found out how to execute a java method over php.
exec('execution line');
if "execution line" returns any object, is it possible to use it in php-script like a variable?
|
|
You'll only get the result of a command, ie a string. You'll have to go through an extension (ie PHP/Java bridge) to get more "evolved" data, but probably never as simply as you'd like. |
|||||
|
|
You can get the output from running a Shell command in PHP by using:
The above example will put the output of "ls -la" into the $output variable. Hope this helps :-) |
|||
|
|
|
If you use proc_open, you can get the stdout and stderr of the executed command. |
|||
|
|