mirror of
https://github.com/php/php-src.git
synced 2026-04-29 11:13:36 +02:00
7f2f0c007c
For rationale, see #6787 Extensions migrated in part 4: * simplexml * skeleton * soap * spl * sqlite3 * sysvmsg * sysvsem * tidy - also removed a check for an ancient dependency version
13 lines
223 B
PHP
13 lines
223 B
PHP
--TEST--
|
|
Bug #41337 (WSDL parsing doesn't ignore non soap bindings)
|
|
--EXTENSIONS--
|
|
soap
|
|
--FILE--
|
|
<?php
|
|
ini_set("soap.wsdl_cache_enabled",0);
|
|
$client = new SoapClient(__DIR__."/bug41337.wsdl");
|
|
echo "ok\n";
|
|
?>
|
|
--EXPECT--
|
|
ok
|