SOAP SoapVar 클래스

(PHP 5, PHP 7, PHP 8)


소개

SOAP 서비스와 함께 사용할 변수 또는 개체를 나타내는 클래스입니다.


클래스 개요

                  
class SoapVar {

  /* Properties */
  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;

  /* Methods */
  public __construct(
      mixed $data,
      ?int $encoding,
      ?string $typeName = null,
      ?string $typeNamespace = null,
      ?string $nodeName = null,
      ?string $nodeNamespace = null
  )
}
                  
                

Properties

enc_name
enc_namens
enc_ns
enc_type
enc_stype
enc_value

목차