reference/ctype/functions/ctype-xdigit.xml
e20e74073379710a4f6316734c42996c8fbf9beb
...
...
@@ -13,7 +13,7 @@
13
13
&reftitle.description;
14
14
<methodsynopsis>
15
15
<type>bool</type><methodname>ctype_xdigit</methodname>
16
-
<methodparam><type>string</type><parameter>text</parameter></methodparam>
16
+
<methodparam><type>mixed</type><parameter>text</parameter></methodparam>
17
17
</methodsynopsis>
18
18
<para>
19
19
Checks if all of the characters in the provided <type>string</type>,
...
...
@@ -30,6 +30,8 @@
30
30
<listitem>
31
31
<para>
32
32
The tested string.
33
+
&note.ctype.parameter.integer;
34
+
&note.ctype.parameter.non-string;
33
35
</para>
34
36
</listitem>
35
37
</varlistentry>
...
...
@@ -43,6 +45,7 @@
43
45
Returns &true; if every character in <parameter>text</parameter> is
44
46
a hexadecimal 'digit', that is a decimal digit or a character from
45
47
<literal>[A-Fa-f]</literal> , &false; otherwise.
48
+
&ctype.result.empty-string;
46
49
</para>
47
50
</refsect1>
48
51

...
...
@@ -77,16 +80,12 @@ The string ab12bc99 consists of all hexadecimal digits.
77
80
</para>
78
81
</refsect1>
79
82

80
-
<refsect1 role="notes">
81
-
&reftitle.notes;
82
-
&note.ctype.parameter.integer;
83
-
</refsect1>
84
-

85
83
<refsect1 role="seealso">
86
84
&reftitle.seealso;
87
85
<para>
88
86
<simplelist>
89
87
<member><function>ctype_digit</function></member>
88
+
<member><function>IntlChar::isxdigit</function></member>
90
89
</simplelist>
91
90
</para>
92
91
</refsect1>
93
92