📄 class.soap_val.php
字号:
<?php
class soapval extends nusoap_base
{
function soapval( $name = "soapval", $type = false, $value = -1, $element_ns = false, $type_ns = false, $attributes = false )
{
$this->name = $name;
$this->value = $value;
$this->type = $type;
$this->element_ns = $element_ns;
$this->type_ns = $type_ns;
$this->attributes = $attributes;
}
function serialize( $use = "encoded" )
{
return $this->serialize_val( $this->value, $this->name, $this->type, $this->element_ns, $this->type_ns, $this->attributes, $use );
}
function decode( )
{
return $this->value;
}
}
?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -