SoapVar::__construct

(PHP 5, PHP 7, PHP 8)

SoapVar::__constructSoapVar 构造函数

描述

public SoapVar::__construct(
    混合 $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"));
?>

参见

添加注释

用户贡献的注释

此页面没有用户贡献的注释。
To Top