Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions reference/mbstring/functions/mb-decode-numericentity.xml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,8 @@
&reftitle.errors;
<simpara>
Throws a <exceptionname>ValueError</exceptionname> if
<parameter>map</parameter> is not a list of &integer;s.
<parameter>map</parameter> contains any value that is not an
&integer;, &float;, &boolean;, &null;, or a <link linkend="language.types.numeric-strings">numeric string</link>.
</simpara>
</refsect1>

Expand All @@ -88,9 +89,10 @@
<row>
<entry>8.4.0</entry>
<entry>
<function>mb_decode_numericentity</function> now throws a
The <function>mb_decode_numericentity</function> function now throws a
<exceptionname>ValueError</exceptionname> if <parameter>map</parameter>
is not a list of &integer;s.
contains any value that is not an
&integer;, &float;, &boolean;, &null;, or a <link linkend="language.types.numeric-strings">numeric string</link>.
</entry>
</row>
&mbstring.changelog.encoding-nullable;
Expand All @@ -104,7 +106,7 @@
<para>
<example>
<title><parameter>map</parameter> example</title>
<programlisting>
<programlisting role="php">
<![CDATA[
<?php
$convmap = array (
Expand Down
10 changes: 6 additions & 4 deletions reference/mbstring/functions/mb-encode-numericentity.xml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,8 @@
&reftitle.errors;
<simpara>
Throws a <exceptionname>ValueError</exceptionname> if
<parameter>map</parameter> is not a list of &integer;s.
<parameter>map</parameter> contains any value that is not an
&integer;, &float;, &boolean;, &null;, or a <link linkend="language.types.numeric-strings">numeric string</link>.
</simpara>
</refsect1>

Expand All @@ -91,9 +92,10 @@
<row>
<entry>8.4.0</entry>
<entry>
<function>mb_encode_numericentity</function> now throws a
The <function>mb_encode_numericentity</function> function now throws a
<exceptionname>ValueError</exceptionname> if <parameter>map</parameter>
is not a list of &integer;s.
contains any value that is not an
&integer;, &float;, &boolean;, &null;, or a <link linkend="language.types.numeric-strings">numeric string</link>.
</entry>
</row>
&mbstring.changelog.encoding-nullable;
Expand All @@ -107,7 +109,7 @@
<para>
<example>
<title><parameter>map</parameter> example</title>
<programlisting>
<programlisting role="php">
<![CDATA[
<?php
$convmap = array (
Expand Down