Skip to content

Commit 4d9292b

Browse files
committed
docs
1 parent 0622758 commit 4d9292b

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

NEWS.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
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)

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,9 @@ Known differences from the original extension
1313
This library is not complete yet, and thus to be considered a Work in Progress.
1414

1515
Main 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

src/XmlRpc.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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.

0 commit comments

Comments
 (0)