Deprecated
Table of Contents
Client.php |
Helper/Charset.php |
Helper/XMLParser.php |
PhpXmlRpc.php |
Request.php |
Server.php |
Value.php |
Client.php
Line | Element | Reason |
---|---|---|
559 | Client::setSSLVerifyPeer() | use setOption |
576 | Client::setSSLVerifyHost() | use setOption |
591 | Client::setSSLVersion() | use setOption |
656 | Client::setRequestCompression() | use setOption |
706 | Client::setCurlOptions() | use setOption |
719 | Client::setUseCurl() | use setOption |
737 | Client::setUserAgent() | use setOption |
1732 | Client::sendPayloadHTTP10() | |
1767 | Client::sendPayloadHTTPS() | |
1804 | Client::sendPayloadSocket() | |
1872 | Client::sendPayloadCURL() | |
1940 | Client::prepareCurlHandle() | |
71 | Client::$errno | will be removed in the future |
76 | Client::$errstr | will be removed in the future |
Charset.php
Line | Element | Reason |
---|---|---|
353 | Charset::isValidCharset() | kept around for BC, as it is not in use by the lib |
383 | Charset::getEntities() |
XMLParser.php
Line | Element | Reason |
---|---|---|
1045 | XMLParser::xmlrpc_se_any() |
PhpXmlRpc.php
Line | Element | Reason |
---|---|---|
260 | PhpXmlRpc::exportGlobals() | |
305 | PhpXmlRpc::importGlobals() |
Request.php
Line | Element | Reason |
---|---|---|
43 | Request::$httpResponse | will be removed in a future release; still accessible by subclasses for the moment |
Server.php
Line | Element | Reason |
---|---|---|
490 | Server::add_to_map() | use addToMap instead |
1457 | Server::xml_header() | this method was moved to the Response class |
111 | Server::$accepted_charset_encodings | UNUSED so far by this library. It is still accessible by subclasses but will be dropped in the future. |
Value.php
Line | Element | Reason |
---|---|---|
302 | Value::serializeData() | this should be folded back into serialize() |
582 | Value::structMemExists() | use array access, e.g. isset($val[$key]) |
598 | Value::structMem() | use array access, e.g. $val[$key] |
611 | Value::structReset() | iterate directly over the object using foreach instead |
625 | Value::structEach() | iterate directly over the object using foreach instead |
644 | Value::arrayMem() | use array access, e.g. $val[$key] |
658 | Value::arraySize() | use count() instead |
672 | Value::structSize() | use count() instead |