Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.35
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
html /
gf.bdcloud.fr /
includes /
nusoap /
lib /
Delete
Unzip
Name
Size
Permission
Date
Action
Mail
[ DIR ]
drwxr-xr-x
2025-11-08 11:17
changelog
37.64
KB
-rw-r--r--
2020-10-12 13:37
class.nusoap_base.php
28.31
KB
-rw-r--r--
2020-10-12 13:37
class.soap_fault.php
2.09
KB
-rw-r--r--
2020-10-12 13:37
class.soap_parser.php
24.46
KB
-rw-r--r--
2020-10-12 13:37
class.soap_server.php
38.93
KB
-rw-r--r--
2020-10-12 13:37
class.soap_transport_http.php
43.35
KB
-rw-r--r--
2020-10-12 13:37
class.soap_val.php
2.17
KB
-rw-r--r--
2020-10-12 13:37
class.soapclient.php
31.82
KB
-rw-r--r--
2020-10-12 13:37
class.wsdl.php
76.43
KB
-rw-r--r--
2020-10-12 13:37
class.wsdlcache.php
5.18
KB
-rw-r--r--
2020-10-12 13:37
class.xmlschema.php
34.34
KB
-rw-r--r--
2020-10-12 13:37
nusoap.php
282.24
KB
-rw-r--r--
2020-10-12 13:37
nusoapmime.php
14.39
KB
-rw-r--r--
2020-10-12 13:37
Save
Rename
<?php /** * For creating serializable abstractions of native PHP types. This class * allows element name/namespace, XSD type, and XML attributes to be * associated with a value. This is extremely useful when WSDL is not * used, but is also useful when WSDL is used with polymorphic types, including * xsd:anyType and user-defined types. * * @author Dietrich Ayala <dietrich@ganx4.com> * @access public */ class soapval extends nusoap_base { /** * The XML element name * * @var string * @access private */ var $name; /** * The XML type name (string or false) * * @var mixed * @access private */ var $type; /** * The PHP value * * @var mixed * @access private */ var $value; /** * The XML element namespace (string or false) * * @var mixed * @access private */ var $element_ns; /** * The XML type namespace (string or false) * * @var mixed * @access private */ var $type_ns; /** * The XML element attributes (array or false) * * @var mixed * @access private */ var $attributes; /** * constructor * * @param string $name optional name * @param mixed $type optional type name * @param mixed $value optional value * @param mixed $element_ns optional namespace of value * @param mixed $type_ns optional namespace of type * @param mixed $attributes associative array of attributes to add to element serialization * @access public */ function soapval($name='soapval',$type=false,$value=-1,$element_ns=false,$type_ns=false,$attributes=false) { parent::nusoap_base(); $this->name = $name; $this->type = $type; $this->value = $value; $this->element_ns = $element_ns; $this->type_ns = $type_ns; $this->attributes = $attributes; } /** * return serialized value * * @param string $use The WSDL use value (encoded|literal) * @return string XML data * @access public */ function serialize($use='encoded') { return $this->serialize_val($this->value, $this->name, $this->type, $this->element_ns, $this->type_ns, $this->attributes, $use, true); } /** * decodes a soapval object into a PHP native type * * @return mixed * @access public */ function decode(){ return $this->value; } } ?>