(PHP 5, PHP 7, PHP 8)
SoapVar::__construct — SoapVar 构造函数
$data
,$encoding
,$typeName
= null
,$typeNamespace
= null
,$nodeName
= null
,$nodeNamespace
= null
构造一个新的 SoapVar 对象。
data
要传递或返回的数据。
encoding
编码 ID,其中一个是 XSD_...
常量。
type_name
类型名称。
type_namespace
类型命名空间。
node_name
XML 节点名称。
node_namespace
XML 节点命名空间。
版本 | 描述 |
---|---|
8.0.3 |
typeName , typeNamespace , nodeName , 和 nodeNamespace 现在可以为空。 |
示例 #1 SoapVar::__construct() 示例
<?php
class SOAPStruct {
function SOAPStruct($s, $i, $f)
{
$this->varString = $s;
$this->varInt = $i;
$this->varFloat = $f;
}
}
$client = new SoapClient(null, array('location' => "http://localhost/soap.php",
'uri' => "http://test-uri/"));
$struct = new SOAPStruct('arg', 34, 325.325);
$soapstruct = new SoapVar($struct, SOAP_ENC_OBJECT, "SOAPStruct", "http://soapinterop.org/xsd");
$client->echoStruct(new SoapParam($soapstruct, "inputStruct"));
?>