Call java from php

Possible duplicate:
Call Java method from PHP5

How can I call a java application from a php application, given that they are on the same server?

No WebServices or any HTTP material.

Can I do it and how to do it?

+6
source share
1 answer

You can use the php function exec(...) to call java on the command line.

+5
source

Source: https://habr.com/ru/post/902117/


All Articles