bug29109.phpt 335 B

12345678910111213141516
  1. --TEST--
  2. Bug #29109 (Uncaught SoapFault exception: [WSDL] Out of memory)
  3. --EXTENSIONS--
  4. soap
  5. --INI--
  6. soap.wsdl_cache_enabled=0
  7. --FILE--
  8. <?php
  9. $client = new SoapClient(__DIR__."/bug29109.wsdl");
  10. var_dump($client->__getFunctions());
  11. ?>
  12. --EXPECT--
  13. array(1) {
  14. [0]=>
  15. string(53) "HelloWorldResponse HelloWorld(HelloWorld $parameters)"
  16. }