--TEST-- SOAP Server 8: setclass and getfunctions --SKIPIF-- --FILE-- str; } } $server = new soapserver(null,array('uri'=>"http://testuri.org")); $server->setclass("Foo"); var_dump($server->getfunctions()); echo "ok\n"; ?> --EXPECT-- array(2) { [0]=> string(3) "Foo" [1]=> string(4) "test" } ok