PHP调用WebService,求大神帮忙看下~
Jun 23, 2016 pm 02:09 PM
<?php$wsdl="http://pica.chalwin.com/service/JsAccessWebService.asmx?wsdl";$client = new SoapClient($wsdl);$param = array('NodeId'=>'1','outCount'=>'10');$ret = $client->LatestNews($param);if($ret->return){ print_r($ret->return);}else{ echo 'no user';}?>
简单的调用Webservice,这是什么错呢?求大神指导~
回复讨论(解决方案)
有人吗,在线等
print_r($ret);
得到
stdClass Object
(
[LatestNewsResult] => stdClass Object
(
[InheritanceNews] => Array
(
[0] => stdClass Object
(
[url] => http://pica.chalwin.com/cpzx/2013/278.html
[NewsCount] => 0
[Author] => larry
[Title] => 活字站点建设流程
[NewsId] => 278
[PublishTime] => 2013-04-16T13:34:57
)
.....
并没有 return 成员
print_r($ret);
得到
stdClass Object
(
[LatestNewsResult] => stdClass Object
(
[InheritanceNews] => Array
(
[0] => stdClass Object
(
[url] => http://pica.chalwin.com/cpzx/2013/278.html
[NewsCount] => 0
[Author] => larry
[Title] => 活字站点建设流程
[NewsId] => 278
[PublishTime] => 2013-04-16T13:34:57
)
.....
并没有 return 成员
那我要输出所有怎么弄呢?不是输出那个集合啊~哎。
有人吗,在线等
就是怎么绑定在表格里面
$ret->LatestNewsResult->InheritanceNews 是一个下标数组
遍历这个数组应该没有问题吧?
foreach($ret->LatestNewsResult->InheritanceNews as $item) { foreach($item as $k=>$v) { echo "$k : $v\n"; }}
foreach($ret->LatestNewsResult->InheritanceNews as $item) { foreach($item as $k=>$v) { echo "$k : $v\n"; }}
感谢,结果输出来了,其他我再自己美化

인기 기사

인기 기사

뜨거운 기사 태그

메모장++7.3.1
사용하기 쉬운 무료 코드 편집기

SublimeText3 중국어 버전
중국어 버전, 사용하기 매우 쉽습니다.

스튜디오 13.0.1 보내기
강력한 PHP 통합 개발 환경

드림위버 CS6
시각적 웹 개발 도구

SublimeText3 Mac 버전
신 수준의 코드 편집 소프트웨어(SublimeText3)

뜨거운 주제











Laravel Back End : Part 2, React가있는 React 앱 구축

PHP의 컬 : REST API에서 PHP Curl Extension 사용 방법
