1

当我调用一个方法和 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);
4

1 回答 1

1

根据 PHP SoapClient文档,SoapClient 构造函数的第二个参数应该是array

public SoapClient::SoapClient ( mixed $wsdl [, array $options ] )

但是在您的情况下,您正在传递一系列论点。我不确定这是否可行。

其次,在使用 Soap 调用时,wsdl我们可以根据您的示例使用参数直接调用 wsdl 方法。

$client->enqueue(array('from' => '+12345',
'rcpt_array' => '123456',
'msg' => 'hi',
'uname' => 'example1',
'pass' => 'example2'));

这是一个简单的 PHP 肥皂调用示例

于 2012-08-11T05:17:25.770 回答