当我调用一个方法和var_dump($ result)然后显示bool(false)为什么? 我将参数更改为示例,将1234更改为此处写入:
require_once('../class/nusoap.class.php');
// Create the client instance
$client = new soapclient('sample?wsdl' ,'wsdl', '', '', '', '');
$soapClient->soap_defencoding = 'UTF-8';
$soapClient->debug_flag = false;
// Check for an error
$err = $client->getError();
if ($err) {
// Display the error
echo '<h2>Constructor error</h2><pre>' . $err . '</pre>';
// At this point, you know the call that follows will fail
}
// Call the SOAP method
$result = $client->call('enqueue', array('from' => '+12345',
'rcpt_array' => '123456',
'msg' => 'hi',
'uname' => 'example1',
'pass' => 'example2'));
var_dump($result);
答案 0 :(得分:1)
根据PHP SoapClient文档,SoapClient构造函数的第二个参数应为array
public SoapClient::SoapClient ( mixed $wsdl [, array $options ] )
但在你的情况下,你正在传递一系列论点。我不确定这是否有效。
其次在使用wsdl
处理Soap调用时,我们可以根据您的示例使用参数直接调用wsdl方法。
$client->enqueue(array('from' => '+12345',
'rcpt_array' => '123456',
'msg' => 'hi',
'uname' => 'example1',
'pass' => 'example2'));
这是一个简单的PHP soap调用example