PHPXMLRPC 4.10.3

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
550 Client::setSSLVerifyPeer()

use setOption

567 Client::setSSLVerifyHost()

use setOption

582 Client::setSSLVersion()

use setOption

647 Client::setRequestCompression()

use setOption

697 Client::setCurlOptions()

use setOption

710 Client::setUseCurl()

use setOption

728 Client::setUserAgent()

use setOption

1713 Client::sendPayloadHTTP10()
1748 Client::sendPayloadHTTPS()
1785 Client::sendPayloadSocket()
1853 Client::sendPayloadCURL()
1921 Client::prepareCurlHandle()
70 Client::$errno

will be removed in the future

75 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
1047 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

1454 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

Search results