使用 Quercus 从 Java 调用 PHP
我有一个示例 PHP 类,我想在我的 Java 应用程序中使用它。
我们决定使用 Quercus 作为库来进行集成。
有人可以告诉我如何使用 Quercus 从 Java 代码调用 PHP 类吗?
例如。
PHP 类名称是calculator.php,它有一个方法 sum(),它需要传递 2 个数字,并且它将对这些数字进行求和。
请让我知道可以编码以实现相同目的的示例代码。
谢谢,
I have a sample PHP class which I would like to Utilize in my Java Application.
We have decided to use Quercus as a Libary for doing the Integration.
Can some one let me know How can I call a PHP class from Java Code using Quercus.
For Example.
PHP class name is calculator.php and it has one method say sum() which expects 2 numbers to be passed and It will do the summation of those number.
Please let me know the sample code which can be coded to achive the same.
Thanks,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您应该查看 QuercusEngine
其他示例
唯一需要的 jar 是 resin.jar 和 servlet-api.jar。
You should look at QuercusEngine
Other examples
The only needed jars are resin.jar and servlet-api.jar.
现在看来您无法有效地实例化 QuercusEngine。相反:
您可能需要
engine.eval(reader);
It seems that you can't usefully instantiate a QuercusEngine these days. Instead:
You then probably want
engine.eval(reader);