使用 Zend 的 xmlrpc 客户端进行 XML 解析
我正在尝试使用名为 xmlrpc 的 zend 库从包含酒店预订列表的 xml 文件中检索。这是代码:
$client = new Zend_XmlRpc_Client('http://username:[email protected]/xml-rpc');
$service = $client->getProxy();
$hotels = $service->bookings->getHotels();
如何将一些参数传递给 getHotels 方法?
I am trying to retrieve from an xml file which holds list of the hotel bookings, using zend library called xmlrpc. This is the code:
$client = new Zend_XmlRpc_Client('http://username:[email protected]/xml-rpc');
$service = $client->getProxy();
$hotels = $service->bookings->getHotels();
How can I pass some parameters to the getHotels method?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我已经做到了!只需在关联数组中传递参数,如下所示:
I have done it! Just pass the parameters in an associative array like this: