reference/math/functions/decoct.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>decoct</methodname>
12
-
<methodparam><type>int</type><parameter>number</parameter></methodparam>
13
-
</methodsynopsis>
10
+
<methodsynopsis>
11
+
<type>string</type><methodname>decoct</methodname>
12
+
<methodparam><type>int</type><parameter>num</parameter></methodparam>
13
+
</methodsynopsis>
14
14
<para>
15
15
Returns a string containing an octal representation of the given
16
-
<parameter>number</parameter> argument. The largest number that can be
16
+
<parameter>num</parameter> argument. The largest number that can be
17
17
converted depends on the platform in use. For 32-bit platforms this is
18
18
usually <literal>4294967295</literal> in decimal resulting in
19
19
<literal>37777777777</literal>. For 64-bit platforms this is usually
...
...
@@ -26,7 +26,7 @@
26
26
<para>
27
27
<variablelist>
28
28
<varlistentry>
29
-
<term><parameter>number</parameter></term>
29
+
<term><parameter>num</parameter></term>
30
30
<listitem>
31
31
<para>
32
32
Decimal value to convert
...
...
@@ -39,7 +39,7 @@
39
39
<refsect1 role="returnvalues">
40
40
&reftitle.returnvalues;
41
41
<para>
42
-
Octal string representation of <parameter>number</parameter>
42
+
Octal string representation of <parameter>num</parameter>
43
43
</para>
44
44
</refsect1>
45
45
<refsect1 role="examples">
...
...
@@ -77,7 +77,6 @@ echo decoct(264);
77
77
</para>
78
78
</refsect1>
79
79
</refentry>
80
-

81
80
<!-- Keep this comment at the end of the file
82
81
Local variables:
83
82
mode: sgml
84
83