mirror of
https://github.com/php/php-src.git
synced 2025-01-22 03:34:19 +08:00
16 lines
248 B
PHP
16 lines
248 B
PHP
--TEST--
|
|
Bug #27742 (WDSL SOAP Parsing Schema bug)
|
|
--SKIPIF--
|
|
<?php require_once('skipif.inc'); ?>
|
|
--GET--
|
|
wsdl
|
|
--INI--
|
|
soap.wsdl_cache_enabled=0
|
|
--FILE--
|
|
<?php
|
|
$x = new SoapClient(dirname(__FILE__)."/bug27742.wsdl");
|
|
echo "ok\n";
|
|
?>
|
|
--EXPECT--
|
|
ok
|