使用 Quercus 从 Java 调用 PHP

发布于 2024-10-21 17:19:29 字数 248 浏览 2 评论 0原文

我有一个示例 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

殤城〤 2024-10-28 17:19:29

您应该查看 QuercusEngine

import com.caucho.quercus.QuercusEngine;

QuercusEngine engine = new QuercusEngine();
engine.setOutputStream(System.out);
engine.executeFile("src/test.php");

其他示例

唯一需要的 jar 是 resin.jarservlet-api.jar

You should look at QuercusEngine

import com.caucho.quercus.QuercusEngine;

QuercusEngine engine = new QuercusEngine();
engine.setOutputStream(System.out);
engine.executeFile("src/test.php");

Other examples

The only needed jars are resin.jar and servlet-api.jar.

末が日狂欢 2024-10-28 17:19:29

现在看来您无法有效地实例化 QuercusEngine。相反:

import javax.script.ScriptEngine;
import com.caucho.quercus.script.QuercusScriptEngineFactory;

QuercusScriptEngineFactory factory = new QuercusScriptEngineFactory();
ScriptEngine engine = factory.getScriptEngine();

您可能需要 engine.eval(reader);

It seems that you can't usefully instantiate a QuercusEngine these days. Instead:

import javax.script.ScriptEngine;
import com.caucho.quercus.script.QuercusScriptEngineFactory;

QuercusScriptEngineFactory factory = new QuercusScriptEngineFactory();
ScriptEngine engine = factory.getScriptEngine();

You then probably want engine.eval(reader);

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文