首页上一页 1 下一页尾页 1 条记录 1/1页
《PHP从入门到精通》 25章的问题
发表在PHP图书答疑
2009-06-23
是否精华
是
否
版块置顶:
是
否
今天在调试25章第二个例子,也就NuSOAP的那个,index.php代码是这样的,路径开始时配置时自己改了,没问题
<?php
include '../lib/nusoap.php';
$client = new soapclient('http://localhost/yuanma/25/2/server.php?wsdl',true);
$return = $client->call('getBccd',array('user'=>'spcn'));
echo $return;
?>运行提示如下警告:Warning: SoapClient::SoapClient() expects parameter 2 to be array, boolean given in D:\www\yuanma\25\2\index.php on line 17;第二个参数有问题,请问该怎么处理?
<?php
include '../lib/nusoap.php';
$client = new soapclient('http://localhost/yuanma/25/2/server.php?wsdl',true);
$return = $client->call('getBccd',array('user'=>'spcn'));
echo $return;
?>运行提示如下警告:Warning: SoapClient::SoapClient() expects parameter 2 to be array, boolean given in D:\www\yuanma\25\2\index.php on line 17;第二个参数有问题,请问该怎么处理?