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?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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.