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 |
|---|---|---|
| 562 | Client::setSSLVerifyPeer() | use setOption |
| 579 | Client::setSSLVerifyHost() | use setOption |
| 597 | Client::setSSLVersion() | use setOption |
| 662 | Client::setRequestCompression() | use setOption |
| 712 | Client::setCurlOptions() | use setOption |
| 726 | Client::setUseCurl() | use setOption |
| 743 | Client::setUserAgent() | use setOption |
| 1801 | Client::sendPayloadHTTP10() | |
| 1838 | Client::sendPayloadHTTPS() | |
| 1875 | Client::sendPayloadSocket() | |
| 1943 | Client::sendPayloadCURL() | |
| 2011 | 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 |
|---|---|---|
| 268 | PhpXmlRpc::exportGlobals() | |
| 313 | 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 |
|---|---|---|
| 446 | Server::add_to_map() | use addToMap instead |
| 1489 | 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 |