Skip to content

Commit f2f3a76

Browse files
committed
Document changes to mbstring functions
php/doc-en@398329d
1 parent a9eb4da commit f2f3a76

File tree

4 files changed

+72
-4
lines changed

4 files changed

+72
-4
lines changed

reference/mbstring/functions/mb-convert-case.xml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<!-- $Revision$ -->
3-
<!-- EN-Revision: b4afab59db15ea4b7c5dc2132d85932b4859bcf2 Maintainer: hirokawa Status: ready -->
3+
<!-- EN-Revision: 398329d3c680e8eccd694a6a3f7fe1ebd929ea80 Maintainer: hirokawa Status: ready -->
44
<!-- CREDITS: takagi,mumumu -->
55
<refentry xml:id="function.mb-convert-case" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
66
<refnamediv>
@@ -82,6 +82,16 @@
8282
</row>
8383
</thead>
8484
<tbody>
85+
<row>
86+
<entry>8.3.0</entry>
87+
<entry>
88+
ギリシャ文字のシグマ向けに、条件付きのケースルールが実装されました。
89+
これは <constant>MB_CASE_LOWER</constant>
90+
と <constant>MB_CASE_TITLE</constant> にのみ適用されます。
91+
<constant>MB_CASE_LOWER_SIMPLE</constant> と
92+
<constant>MB_CASE_TITLE_SIMPLE</constant> には適用されません。
93+
</entry>
94+
</row>
8595
<row>
8696
<entry>7.3.0</entry>
8797
<entry>

reference/mbstring/functions/mb-decode-mimeheader.xml

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<!-- $Revision$ -->
3-
<!-- EN-Revision: 92f1b8b177eb5730382abf9f27bae868f1bb636f Maintainer: hirokawa Status: ready -->
3+
<!-- EN-Revision: 398329d3c680e8eccd694a6a3f7fe1ebd929ea80 Maintainer: hirokawa Status: ready -->
44
<refentry xml:id="function.mb-decode-mimeheader" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
55
<refnamediv>
66
<refname>mb_decode_mimeheader</refname>
@@ -42,6 +42,32 @@
4242
</para>
4343
</refsect1>
4444

45+
<refsect1 role="changelog">
46+
&reftitle.changelog;
47+
<para>
48+
<informaltable>
49+
<tgroup cols="2">
50+
<thead>
51+
<row>
52+
<entry>&Version;</entry>
53+
<entry>&Description;</entry>
54+
</row>
55+
</thead>
56+
<tbody>
57+
<row>
58+
<entry>8.3.0</entry>
59+
<entry>
60+
アンダースコアは
61+
<link xlink:href="&url.rfc;2047">RFC 2047</link>
62+
に定められた通り、スペースに変換されるようになりました。
63+
</entry>
64+
</row>
65+
</tbody>
66+
</tgroup>
67+
</informaltable>
68+
</para>
69+
</refsect1>
70+
4571
<refsect1 role="seealso">
4672
&reftitle.seealso;
4773
<para>

reference/mbstring/functions/mb-encode-mimeheader.xml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<!-- $Revision$ -->
3-
<!-- EN-Revision: 936691e7449fe193b474f7d29df152952e9b8df6 Maintainer: hirokawa Status: ready -->
3+
<!-- EN-Revision: 398329d3c680e8eccd694a6a3f7fe1ebd929ea80 Maintainer: hirokawa Status: ready -->
44
<!-- CREDITS: takagi,mumumu -->
55
<refentry xml:id="function.mb-encode-mimeheader" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
66
<refnamediv>
@@ -102,6 +102,14 @@
102102
</row>
103103
</thead>
104104
<tbody>
105+
<row>
106+
<entry>8.3.0</entry>
107+
<entry>
108+
<literal>NUL</literal> (0) バイトは、
109+
Quoted-Printable エンコーディングを用いた場合でも削除されなくなりました。
110+
代わりに、<literal>=00</literal> でエンコードされます。
111+
</entry>
112+
</row>
105113
<row>
106114
<entry>8.0.0</entry>
107115
<entry>

reference/mbstring/functions/mb-strtolower.xml

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<!-- $Revision$ -->
3-
<!-- EN-Revision: b4afab59db15ea4b7c5dc2132d85932b4859bcf2 Maintainer: hirokawa Status: ready -->
3+
<!-- EN-Revision: 398329d3c680e8eccd694a6a3f7fe1ebd929ea80 Maintainer: hirokawa Status: ready -->
44
<!-- CREDITS: takagi -->
55
<refentry xml:id="function.mb-strtolower" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
66
<refnamediv>
@@ -97,6 +97,30 @@ echo $str; // 結果は τάχιστη αλώπηξ βαφής ψημένη γη
9797
</para>
9898
</refsect1>
9999

100+
<refsect1 role="changelog">
101+
&reftitle.changelog;
102+
<para>
103+
<informaltable>
104+
<tgroup cols="2">
105+
<thead>
106+
<row>
107+
<entry>&Version;</entry>
108+
<entry>&Description;</entry>
109+
</row>
110+
</thead>
111+
<tbody>
112+
<row>
113+
<entry>8.3.0</entry>
114+
<entry>
115+
ギリシャ文字のシグマ向けに、条件付きのケースルールが実装されました。
116+
</entry>
117+
</row>
118+
</tbody>
119+
</tgroup>
120+
</informaltable>
121+
</para>
122+
</refsect1>
123+
100124
<refsect1 role="seealso">
101125
&reftitle.seealso;
102126
<para>

0 commit comments

Comments
 (0)