File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1- ## v1.0-beta (2021/1/.. )
1+ ## v1.0-beta (2021/1/11 )
22
33- Improved: support for handling UTF8 characters both in received and in generated xml
44- Improved: support for the ` $encoding ` argument in ` xmlrpc_decode() ` and ` xmlrpc_decode_request() `
55- Improved: partial support for the ` $options ` parameter in ` xmlrpc_encode_request ` , allowing UTF8 in native strings
6+ via setting ` 'encoding' => 'UTF-8' ` and ` 'escaping' => 'markup' `
67
78
89## v1.0-alpha (2020/12/31)
Original file line number Diff line number Diff line change @@ -13,10 +13,9 @@ Known differences from the original extension
1313This library is not complete yet, and thus to be considered a Work in Progress.
1414
1515Main features missing are:
16- - character set handling: at the moment utf-8 and iso-8859-1 are supported: iso-8859-1 as default, and utf8
16+ - character set handling: at the moment only utf-8 and iso-8859-1 are supported, iso-8859-1 as default, and utf8:
1717 - via the ` $encoding ` argument to ` xmlrpc_decode() ` and ` xmlrpc_decode_request() `
18- - via setting ` 'encoding' => 'UTF-8' ` and ` 'escaping' => 'markup' ` in the ` $options ` to ` xmlrpc_encode_request `
19-
18+ - via setting ` 'encoding' => 'UTF-8' ` and ` 'escaping' => 'markup' ` in the ` $options ` argument to ` xmlrpc_encode_request `
2019- the ` xmlrpc_parse_method_descriptions ` and ` xmlrpc_server_register_introspection_callback ` functions exist but do nothing
2120- xmlrpc server method ` system.describeMethods ` is not implemented
2221
Original file line number Diff line number Diff line change @@ -203,7 +203,7 @@ public static function xmlrpc_encode($val)
203203 * of them. If method name === null, create an xmlrpc response instead
204204 * @param string $method
205205 * @param array $params
206- * @param array $output_options options array
206+ * @param array $output_options options array. At the moment only partial support for 'encoding' and 'escaping' is provided
207207 * @return string
208208 *
209209 * @todo implement parsing/usage of options: encoding, escaping.
You can’t perform that action at this time.
0 commit comments