--TEST-- Bug #39121 (Incorrect return array handling in non-wsdl soap client) --SKIPIF-- --INI-- soap.wsdl_cache_enabled=0 --FILE-- StateCode description 241 Carabobo 243 Aragua and Carabobo 261 Zulia EOF; } } $client = new LocalSoapClient(NULL, array('location'=>'test://','uri'=>'test://')); print_r($client->getDIDAreaResponse()); ?> --EXPECT-- Array ( [Array] => Array ( [0] => Array ( [0] => StateCode [1] => description ) [1] => Array ( [0] => 241 [1] => Carabobo ) [2] => Array ( [0] => 243 [1] => Aragua and Carabobo ) [3] => Array ( [0] => 261 [1] => Zulia ) ) )