PHP:xmlrpc_encode_request()需要allow_url_fopen吗?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,事实并非如此。该函数仅用于编组请求的函数名称及其参数。它构建一个 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.