1

我正在使用 php JavaBridge 库,

问题是,我需要使用 require_once "someremoteurl.com" 直接从服务器包含 php 客户端库

为此,应启用 allow_url_include,但我处于应避免这种情况的情况。

以前有没有人这样做过?有什么解决方法吗?

我尝试使用 fread 实时下载文件,然后从本地包含它,但它无法以某种方式工作,在 JavaBridge 类中给出了一些 php 错误......虽然我没有看到任何区别。

4

1 回答 1

2

As suggested by Marc B, used the following code:

$remote_contents = file_get_contents($url); 
file_put_contents($local, $remote_contents);

include($local);

Didn't work on first try, but worked after adding this line before the include:

define ("JAVA_SERVLET", "/WordBridge/servlet.phpjavabridge");
于 2013-05-28T14:40:50.617 回答