--TEST-- Bug #68361 Segmentation fault on SoapClient::__getTypes --EXTENSIONS-- soap --FILE-- XML; file_put_contents(__DIR__ . "/bug68361.xml", $xml); $client = new SoapClient(__DIR__ . "/bug68361.xml"); $res = $client->__getTypes(); // Segmentation fault here print_r($res); ?> --CLEAN-- --EXPECT-- Array ( [0] => anyType ArrayOfEmployeeReturn[] [1] => struct Employee { int id; string department; string name; int age; } [2] => struct User { string name; int age; } )