(No version information available, might be only in CVS)
SoapParam->__construct() — Constructeur SoapParam
Construit un nouvel objet SoapParam
.
Les données à passer ou à retourner. Vous pouvez passer ce paramètre directement en tant qu'une valeur PHP, mais dans ce cas, il sera nommé paramN et le service SOAP ne le comprendra pas.
Le nom du paramètre.
Exemple 2455. Quelques exemples
<?php
$client
= new
SoapClient
(
null
,array(
'location'
=>
"http://localhost/soap.php"
,
'uri'
=>
"http://test-uri/"
));
$client
->
SomeFunction
(new
SoapParam
(
$a
,
"a"
),
new
SoapParam
(
$b
,
"b"
),
new
SoapParam
(
$c
,
"c"
));
?>
SoapClient->__soapCall() |
SoapVar->__construct() |