schema029.phpt 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. --TEST--
  2. SOAP XML Schema 29: SOAP 1.2 Multidimensional array (second way)
  3. --EXTENSIONS--
  4. soap
  5. xml
  6. --FILE--
  7. <?php
  8. include "test_schema.inc";
  9. $schema = <<<EOF
  10. <complexType name="testType">
  11. <complexContent>
  12. <restriction base="enc12:Array" xmlns:enc12="http://www.w3.org/2003/05/soap-encoding">
  13. <all>
  14. <element name="x_item" type="int" maxOccurs="unbounded"/>
  15. </all>
  16. <attribute ref="enc12:arraySize" wsdl:arraySize="* 1"/>
  17. </restriction>
  18. </complexContent>
  19. </complexType>
  20. EOF;
  21. test_schema($schema,'type="tns:testType"',array(array(123),array(123.5)));
  22. echo "ok";
  23. ?>
  24. --EXPECT--
  25. <?xml version="1.0" encoding="UTF-8"?>
  26. <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://test-uri/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><SOAP-ENV:Body><ns1:test><testParam SOAP-ENC:arrayType="xsd:int[2,1]" xsi:type="ns1:testType"><x_item xsi:type="xsd:int">123</x_item><x_item xsi:type="xsd:int">123</x_item></testParam></ns1:test></SOAP-ENV:Body></SOAP-ENV:Envelope>
  27. array(2) {
  28. [0]=>
  29. array(1) {
  30. [0]=>
  31. int(123)
  32. }
  33. [1]=>
  34. array(1) {
  35. [0]=>
  36. int(123)
  37. }
  38. }
  39. ok