mirror of
https://github.com/php/php-src.git
synced 2026-04-28 10:43:30 +02:00
625f614cb1
“Thou shalt not follow the NULL pointer, for chaos and madness await thee at its end.”
16 lines
329 B
PHP
16 lines
329 B
PHP
--TEST--
|
|
Bug #76348 (WSDL_CACHE_MEMORY causes Segmentation fault)
|
|
--SKIPIF--
|
|
<?php
|
|
if (!extension_loaded('soap')) die('skip soap extension not available');
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
$client = new SoapClient(__DIR__ . DIRECTORY_SEPARATOR . 'bug76348.wsdl', [
|
|
'cache_wsdl' => WSDL_CACHE_MEMORY,
|
|
]);
|
|
?>
|
|
===DONE===
|
|
--EXPECT--
|
|
===DONE===
|