- or download this
$header = SOAP::Header->name(
...
SOAP::Header->name("msg" => "Ok")
)
);
- or download this
$data = SOAP::Data->name(
"status"=>\SOAP::Data->value(
...
SOAP::Data->name("msg" => "Ok")
)
);
- or download this
$VAR1 = {
'status' => {
...
'code' => '0'
}
};
- or download this
$VAR1 = {
'msg' => 'Ok',
'code' => '0'
};