This commit is contained in:
Martin Samesch 2022-04-14 15:08:46 +02:00
parent bc3e9a2933
commit 96f69db3ae
No known key found for this signature in database
GPG key ID: D916421AD0A9ACD7

View file

@ -693,7 +693,7 @@ $client = new SoapClient("books.wsdl", array('classmap' => array('book' => "MyBo
$typemap = array(
array("type_ns" => "http://schemas.example.com",
"type_name" => "book",
"from_xml" => "unserialize_book"
"from_xml" => "unserialize_book",
"to_xml" => "serialize_book")
);
$client = new SoapClient("books.wsdl", array('typemap' => $typemap));