Introduction
PHP Manual
PHP Manual»SOAP»SoapVar

La classe SoapVar

(PHP 5, PHP 7, PHP 8)

Une classe représentant une variable ou un objet à utiliser avec des services SOAP.

class SoapVar {
/* Propriétés */
public int $enc_type;
public mixed $enc_value = null;
public ?string $enc_stype = null;
public ?string $enc_ns = null;
public ?string $enc_name = null;
public ?string $enc_namens = null;
/* Méthodes */
public function __construct(
    mixed $data,
    ?int $encoding,
    ?string $typeName = null,
    ?string $typeNamespace = null,
    ?string $nodeName = null,
    ?string $nodeNamespace = null
)
}
enc_name

enc_namens

enc_ns

enc_type

enc_stype

enc_value

Sommaire

To Top