PHP 8.5.0 Alpha 2 available for testing

La clase SoapVar

(PHP 5, PHP 7, PHP 8)

Introducción

Una clase que representa una variable u objeto que utiliza servicios SOAP.

Sinopsis de la Clase

class SoapVar {
/* Propiedades */
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étodos */
public __construct(
    mixed $data,
    ?int $encoding,
    ?string $typeName = null,
    ?string $typeNamespace = null,
    ?string $nodeName = null,
    ?string $nodeNamespace = null
)
}

Propiedades

enc_name

enc_namens

enc_ns

enc_type

enc_stype

enc_value

Tabla de contenidos

add a note

User Contributed Notes 1 note

up
2
seth dot johnson at gmail dot com
10 years ago
It is not documented and thus may be subject to change but if you need to inspect the constructed SoapVar it sets everything you pass it on public variables:

<?php
$foo
= new \stdClass();
$foosoap = new \SoapVar($foo, SOAP_ENC_OBJECT, 'Foo');
var_dump($foosoap);
echo
$foosoap->enc_stype;
echo
get_class($foosoap->enc_value);
?>

Will output (tested in PHP 5.3.3 cli):

object(SoapVar)#2 (3) {
["enc_type"]=>
int(301)
["enc_value"]=>
object(stdClass)#1 (0) {
}
["enc_stype"]=>
string(3) "Foo"
}

Foo
stdClass
To Top