1--TEST-- 2SOAP XML Schema 75: Attributes form qualified/unqualified (attributeFormDefault="qualified") 3--SKIPIF-- 4<?php require_once('skipif.inc'); ?> 5--FILE-- 6<?php 7include "test_schema.inc"; 8$schema = <<<EOF 9 <complexType name="testType"> 10 <attribute name="int1" type="int"/> 11 <attribute name="int2" type="int" form="qualified"/> 12 <attribute name="int3" type="int" form="unqualified"/> 13 </complexType> 14EOF; 15 16test_schema($schema,'type="tns:testType"',(object)array("int1"=>1.1,"int2"=>2.2,"int3"=>3.3), "rpc", "encoded", 'attributeFormDefault="qualified"'); 17echo "ok"; 18?> 19--EXPECTF-- 20<?xml version="1.0" encoding="UTF-8"?> 21<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:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><SOAP-ENV:Body><ns1:test><testParam ns1:int1="1" ns1:int2="2" int3="3" xsi:type="ns1:testType"/></ns1:test></SOAP-ENV:Body></SOAP-ENV:Envelope> 22object(stdClass)#%d (3) { 23 ["int1"]=> 24 int(1) 25 ["int2"]=> 26 int(2) 27 ["int3"]=> 28 int(3) 29} 30ok 31