1--TEST-- 2SOAP XML Schema 55: Apache Map (extension) 3--SKIPIF-- 4<?php require_once('skipif.inc'); ?> 5--INI-- 6precision=14 7--FILE-- 8<?php 9include "test_schema.inc"; 10$schema = <<<EOF 11 <complexType name="testType"> 12 <complexContent> 13 <extension base="apache:Map" xmlns:apache="http://xml.apache.org/xml-soap"> 14 </extension> 15 </complexContent> 16 </complexType> 17EOF; 18test_schema($schema,'type="testType"',array('a'=>123,'b'=>123.5)); 19echo "ok"; 20?> 21--EXPECT-- 22<?xml version="1.0" encoding="UTF-8"?> 23<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://test-uri/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:ns2="http://xml.apache.org/xml-soap" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><SOAP-ENV:Body><ns1:test><testParam xsi:type="ns2:Map"><item><key xsi:type="xsd:string">a</key><value xsi:type="xsd:int">123</value></item><item><key xsi:type="xsd:string">b</key><value xsi:type="xsd:float">123.5</value></item></testParam></ns1:test></SOAP-ENV:Body></SOAP-ENV:Envelope> 24array(2) { 25 ["a"]=> 26 int(123) 27 ["b"]=> 28 float(123.5) 29} 30ok 31