Which of the following code snippets will you use to instantiate Zend_XmlRpc_Server?

A.
$server = Zend_Xml::Zend_XmlRpc_Server()
B.
$server = new Zend_Xml();
C.
$server = new Zend_XmlRpc_Server();
D.
$server = create_new_Zend_XmlRpc_Server()
Explanation:
I have the same idea. C
0
0