PHP:xmlrpc_encode_request()需要allow_url_fopen吗?

发布于 2024-09-08 14:50:01 字数 151 浏览 6 评论 0原文

PHP 的函数 xmlrpc_encode_request() 如何工作?

是否需要将allow_url_fopen的值设置为true?

那么,你通过这个函数访问外部URL,那么还需要这样的配置吗?不幸的是,我目前无法亲自测试。

提前致谢!

How does PHP's function xmlrpc_encode_request() work?

Does it need the value of allow_url_fopen set to true?

Well, you access external URLs with this function, so does it need this configuration? I can't test it myself at the moment, unfortunately.

Thanks in advance!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

妖妓 2024-09-15 14:50:01

不,事实并非如此。该函数仅用于编组请求的函数名称及其参数。它构建一个 XML 字符串。因此它本身不需要检索外部 URL。

所以这个功能本身并不是特别有用。稍后您将需要通过 HTTP 流发送 XML 编码的 RPC 请求。在此步骤 2 中,您需要 allowed_url_fopen、curl 扩展或 pecl http 函数。然而,大多数 XML-RPC 库提供了一种通过 PHP 本地套接字函数以 HTTP 传输 RPC 请求的方法。

所以本质上,allow_url_fopen不是必需的。

No, it does not. This function is just for marshalling the requested function name and its parameters. It builds an XML string. Therefore it does not need to retrieve external URLs itself.

So this function in itself is not particular useful. Later on you will need to send the XML-encoded RPC request over an HTTP stream. And in this step 2, you need either allow_url_fopen, the curl extension, or the pecl http functions. Most XML-RPC libraries however provide a means to transmit the RPC request in HTTP via PHPs native socket functions.

So in essence, allow_url_fopen is not required.

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