我正在尝试使用 xml-rpc 在 wordpress 安装上执行某些任务。
这就是我正在使用的
include_once '/local/www/xxxxxxxx/wp-includes/class-IXR.php';
$objClient = new IXR_Client('http://xxxxxxxx/xmlrpc.php');
如果我在 objClient 上执行 print_r,我会得到以下信息
IXR_Client Object
(
[server] => xxxxxxxx
[port] => 80
[path] => /library/xmlrpc.php
[useragent] => The Incutio XML-RPC PHP Library
[response] =>
[message] =>
[debug] =>
[timeout] => 15
[headers] => Array
(
)
[error] =>
)
我无法弄清楚超时时的 15 是什么意思以及超时的原因。有什么建议吗?