SoapVar::__construct
(PHP 5, PHP 7, PHP 8)
SoapVar::__construct — SoapVar constructor
Description
public SoapVar::__construct(
mixed
?int
?string
?string
?string
?string
)
mixed
$data,?int
$encoding,?string
$typeName = null,?string
$typeNamespace = null,?string
$nodeName = null,?string
$nodeNamespace = null)
Constructs a new SoapVar object.
Parameters
dataThe data to pass or return.
encodingThe encoding ID, one of the
XSD_...constants.type_nameThe type name.
type_namespaceThe type namespace.
node_nameThe XML node name.
node_namespaceThe XML node namespace.
Changelog
| Version | Description |
|---|---|
| 8.0.3 | typeName, typeNamespace, nodeName,and nodeNamespace are nullable now. |
Examples
Example #1 SoapVar::__construct() example
<?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"));
?>See Also
- SoapClient::__soapCall() - Calls a SOAP function
- SoapParam::__construct() - SoapParam constructor
↑ and ↓ to navigate • Enter to select • Esc to close • / to open