reference/math/functions/dechex.xml
0c9c2dd669fe9395eaa73d487fbd160f9057429a
...
...
@@ -7,13 +7,13 @@
7
7
</refnamediv>
8
8
<refsect1 role="description">
9
9
&reftitle.description;
10
-
<methodsynopsis>
11
-
<type>string</type><methodname>dechex</methodname>
12
-
<methodparam><type>int</type><parameter>number</parameter></methodparam>
13
-
</methodsynopsis>
10
+
<methodsynopsis>
11
+
<type>string</type><methodname>dechex</methodname>
12
+
<methodparam><type>int</type><parameter>num</parameter></methodparam>
13
+
</methodsynopsis>
14
14
<para>
15
15
Returns a string containing a hexadecimal representation of the given
16
-
unsigned <parameter>number</parameter> argument.
16
+
unsigned <parameter>num</parameter> argument.
17
17
</para>
18
18
<para>
19
19
The largest number that can be converted is
...
...
@@ -28,13 +28,13 @@
28
28
<para>
29
29
<variablelist>
30
30
<varlistentry>
31
-
<term><parameter>number</parameter></term>
31
+
<term><parameter>num</parameter></term>
32
32
<listitem>
33
33
<para>
34
34
The decimal value to convert.
35
35
</para>
36
36
<para>
37
-
As PHP's <type>integer</type> type is signed, but
37
+
As PHP's <type>int</type> type is signed, but
38
38
<function>dechex</function> deals with unsigned integers, negative
39
39
integers will be treated as though they were unsigned.
40
40
</para>
...
...
@@ -46,7 +46,7 @@
46
46
<refsect1 role="returnvalues">
47
47
&reftitle.returnvalues;
48
48
<para>
49
-
Hexadecimal string representation of <parameter>number</parameter>.
49
+
Hexadecimal string representation of <parameter>num</parameter>.
50
50
</para>
51
51
</refsect1>
52
52
<refsect1 role="examples">
...
...
@@ -108,7 +108,6 @@ ffffffff
108
108
</para>
109
109
</refsect1>
110
110
</refentry>
111
-

112
111
<!-- Keep this comment at the end of the file
113
112
Local variables:
114
113
mode: sgml
115
114