$v = new Value(utf8_decode('Hélène')); // This xmlrpc value will be correctly serialized as the french name
----
-===== $xmlrpcName
+==== $xmlpc_double_precision
+
+@TODO...
+
+==== $xmlrpcName
PhpxmlRpc\PhpXmlRpc::$xmlrpcName = "XML-RPC for PHP"
HTTP header that is sent with every request to the server. You can change its value if you need to customize the User-Agent
string.
-===== $xmlrpcVersion
+==== $xmlrpcVersion
PhpxmlRpc\PhpXmlRpc::$xmlrpcVersion = "4.9.3"
building the User-Agent HTTP header that is sent with every request to the server. You can change its value if you need
to customize the User-Agent string.
-===== $xmlrpc_null_extension
+==== $xmlrpc_null_extension
PhpxmlRpc\PhpXmlRpc::$xmlrpc_null_extension = FALSE
the standard proposed here. This means that `<NIL>` and `<EX:NIL/>` tags received will be parsed as valid
xmlrpc, and the corresponding xmlrpcvals will return "null" for scalarTyp().
-===== $xmlrpc_null_apache_encoding
+==== $xmlrpc_null_apache_encoding
PhpxmlRpc\PhpXmlRpc::$$xmlrpc_null_apache_encoding = FALSE
if ($val) echo 'Found a value of type '.$val->kindOf(); else echo 'Found invalid xml';
----
-==== Automatic conversion of php functions into xmlrpc methods (and vice versa)
+=== Logging
+
+@TODO...
+
+=== Transferring PHP objects over XML-RPC
+
+@TODO...
+
+=== Code generation, Proxy objects & co.
For the extremely lazy coder, helper functions have been added that allow to convert a php function into an xmlrpc method,
and a remotely exposed xmlrpc method into a local php function - or a set of xmlrpc methods into a php class. Note that these come with many caveat.
$srv = new Server($methods);
----
+== Performances
+
+@TODO...
== Upgrading
}
/**
- * Parses HTTP an http response headers and separates them from the body.
+ * Parses HTTP an http response's headers and separates them from the body.
*
* @param string $data the http response, headers and body. It will be stripped of headers
* @param bool $headersProcessed when true, we assume that response inflating and dechunking has been already carried out