mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
Some cosmetic changes.
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@19088 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
03fd0e40a4
commit
a9419b8e71
1 changed files with 98 additions and 63 deletions
161
functions/bc.xml
161
functions/bc.xml
|
@ -19,17 +19,20 @@
|
|||
<funcdef>string <function>bcadd</function></funcdef>
|
||||
<paramdef>string <parameter>left operand</parameter></paramdef>
|
||||
<paramdef>string <parameter>right operand</parameter></paramdef>
|
||||
<paramdef>int <parameter><optional>scale</optional></parameter></paramdef>
|
||||
<paramdef>int
|
||||
<parameter><optional>scale</optional></parameter>
|
||||
</paramdef>
|
||||
</funcsynopsis>
|
||||
|
||||
<para>
|
||||
Adds the <parameter>left operand</parameter> to the
|
||||
<parameter>right operand</parameter> and returns the
|
||||
sum in a string. The optional <parameter>scale</parameter>
|
||||
parameter is used to set the number of digits after the decimal
|
||||
place in the result.</para>
|
||||
Adds the <parameter>left operand</parameter> to the
|
||||
<parameter>right operand</parameter> and returns the sum in a
|
||||
string. The optional <parameter>scale</parameter> parameter is
|
||||
used to set the number of digits after the decimal place in the
|
||||
result.
|
||||
</para>
|
||||
<para>
|
||||
See also <function>bcsub</function>.</para>
|
||||
See also <function>bcsub</function>.
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
|
@ -44,19 +47,22 @@
|
|||
<funcdef>int <function>bccomp</function></funcdef>
|
||||
<paramdef>string <parameter>left operand</parameter></paramdef>
|
||||
<paramdef>string <parameter>right operand</parameter></paramdef>
|
||||
<paramdef>int <parameter><optional>scale</optional></parameter></paramdef>
|
||||
<paramdef>int
|
||||
<parameter><optional>scale</optional></parameter>
|
||||
</paramdef>
|
||||
</funcsynopsis>
|
||||
|
||||
<para>
|
||||
Compares the <parameter>left operand</parameter> to the
|
||||
<parameter>right operand</parameter> and returns the
|
||||
result as an integer. The optional <parameter>scale</parameter>
|
||||
parameter is used to set the number of digits after the decimal place
|
||||
which will be used in the comparion. The return value is 0 if the
|
||||
two operands are equal. If the <parameter>left operand</parameter>
|
||||
is larger than the <parameter>right operand</parameter> the return
|
||||
value is +1 and if the <parameter>left operand</parameter> is less than
|
||||
the <parameter>right operand</parameter> the return value is -1.</para>
|
||||
Compares the <parameter>left operand</parameter> to the
|
||||
<parameter>right operand</parameter> and returns the result as an
|
||||
integer. The optional <parameter>scale</parameter> parameter is
|
||||
used to set the number of digits after the decimal place which
|
||||
will be used in the comparion. The return value is 0 if the two
|
||||
operands are equal. If the <parameter>left operand</parameter>
|
||||
is larger than the <parameter>right operand</parameter> the
|
||||
return value is +1 and if the <parameter>left operand</parameter>
|
||||
is less than the <parameter>right operand</parameter> the return
|
||||
value is -1.
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
|
@ -71,25 +77,28 @@
|
|||
<funcdef>string <function>bcdiv</function></funcdef>
|
||||
<paramdef>string <parameter>left operand</parameter></paramdef>
|
||||
<paramdef>string <parameter>right operand</parameter></paramdef>
|
||||
<paramdef>int <parameter><optional>scale</optional></parameter></paramdef>
|
||||
<paramdef>int
|
||||
<parameter><optional>scale</optional></parameter>
|
||||
</paramdef>
|
||||
</funcsynopsis>
|
||||
|
||||
<para>
|
||||
Divides the <parameter>left operand</parameter> by the
|
||||
<parameter>right operand</parameter> and returns the result. The optional
|
||||
<parameter>scale</parameter> sets the number of digits after the decimal
|
||||
place in the result.</para>
|
||||
|
||||
Divides the <parameter>left operand</parameter> by the
|
||||
<parameter>right operand</parameter> and returns the result. The
|
||||
optional <parameter>scale</parameter> sets the number of digits
|
||||
after the decimal place in the result.
|
||||
</para>
|
||||
<para>
|
||||
See also <function>bcmul</function>.</para>
|
||||
|
||||
See also <function>bcmul</function>.
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
<refentry id="function.bcmod">
|
||||
<refnamediv>
|
||||
<refname>bcmod</refname>
|
||||
<refpurpose>Get modulus of an arbitrary precision number.</refpurpose>
|
||||
<refpurpose>
|
||||
Get modulus of an arbitrary precision number.
|
||||
</refpurpose>
|
||||
</refnamediv>
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
|
@ -99,10 +108,12 @@
|
|||
<paramdef>string <parameter>modulus</parameter></paramdef>
|
||||
</funcsynopsis>
|
||||
<para>
|
||||
Get the modulus of the <parameter>left operand</parameter> using
|
||||
<parameter>modulus</parameter>.</para>
|
||||
Get the modulus of the <parameter>left operand</parameter> using
|
||||
<parameter>modulus</parameter>.
|
||||
</para>
|
||||
<para>
|
||||
See also <function>bcdiv</function>.</para>
|
||||
See also <function>bcdiv</function>.
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
|
@ -117,23 +128,28 @@
|
|||
<funcdef>string <function>bcmul</function></funcdef>
|
||||
<paramdef>string <parameter>left operand</parameter></paramdef>
|
||||
<paramdef>string <parameter>right operand</parameter></paramdef>
|
||||
<paramdef>int <parameter><optional>scale</optional></parameter></paramdef>
|
||||
<paramdef>int
|
||||
<parameter><optional>scale</optional></parameter>
|
||||
</paramdef>
|
||||
</funcsynopsis>
|
||||
<para>
|
||||
Multiply the <parameter>left operand</parameter> by the
|
||||
<parameter>right operand</parameter> and returns the result. The optional
|
||||
<parameter>scale</parameter> sets the number of digits after the decimal
|
||||
place in the result.</para>
|
||||
|
||||
Multiply the <parameter>left operand</parameter> by the
|
||||
<parameter>right operand</parameter> and returns the result. The
|
||||
optional <parameter>scale</parameter> sets the number of digits
|
||||
after the decimal place in the result.
|
||||
</para>
|
||||
<para>
|
||||
See also <function>bcdiv</function>.</para>
|
||||
See also <function>bcdiv</function>.
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
<refentry id="function.bcpow">
|
||||
<refnamediv>
|
||||
<refname>bcpow</refname>
|
||||
<refpurpose>Raise an arbitrary precision number to another.</refpurpose>
|
||||
<refpurpose>
|
||||
Raise an arbitrary precision number to another.
|
||||
</refpurpose>
|
||||
</refnamediv>
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
|
@ -141,21 +157,28 @@
|
|||
<funcdef>string <function>bcpow</function></funcdef>
|
||||
<paramdef>string <parameter>x</parameter></paramdef>
|
||||
<paramdef>string <parameter>y</parameter></paramdef>
|
||||
<paramdef>int <parameter><optional>scale</optional></parameter></paramdef>
|
||||
<paramdef>int
|
||||
<parameter><optional>scale</optional></parameter>
|
||||
</paramdef>
|
||||
</funcsynopsis>
|
||||
<para>
|
||||
Raise <parameter>x</parameter> to the power <parameter>y</parameter>.
|
||||
The optional <parameter>scale</parameter> can be used to set the number of digits
|
||||
after the decimal place in the result.</para>
|
||||
Raise <parameter>x</parameter> to the power
|
||||
<parameter>y</parameter>. The optional
|
||||
<parameter>scale</parameter> can be used to set the number of
|
||||
digits after the decimal place in the result.
|
||||
</para>
|
||||
<para>
|
||||
See also <function>bcsqrt</function>.</para>
|
||||
See also <function>bcsqrt</function>.
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
<refentry id="function.bcscale">
|
||||
<refnamediv>
|
||||
<refname>bcscale</refname>
|
||||
<refpurpose>Set default scale parameter for all bc math functions.</refpurpose>
|
||||
<refpurpose>
|
||||
Set default scale parameter for all bc math functions.
|
||||
</refpurpose>
|
||||
</refnamediv>
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
|
@ -164,15 +187,19 @@
|
|||
<paramdef>int <parameter>scale</parameter></paramdef>
|
||||
</funcsynopsis>
|
||||
<para>
|
||||
This function sets the default scale parameter for all subsequent bc math functions
|
||||
that do not explicitly specify a scale parameter.</para>
|
||||
This function sets the default scale parameter for all subsequent
|
||||
bc math functions that do not explicitly specify a scale
|
||||
parameter.
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
<refentry id="function.bcsqrt">
|
||||
<refnamediv>
|
||||
<refname>bcsqrt</refname>
|
||||
<refpurpose>Get the square root of an arbitray precision number.</refpurpose>
|
||||
<refpurpose>
|
||||
Get the square root of an arbitray precision number.
|
||||
</refpurpose>
|
||||
</refnamediv>
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
|
@ -182,18 +209,22 @@
|
|||
<paramdef>int <parameter>scale</parameter></paramdef>
|
||||
</funcsynopsis>
|
||||
<para>
|
||||
Return the square root of the <parameter>operand</parameter>. The
|
||||
optional <parameter>scale</parameter> parameter sets the number of
|
||||
digits after the decimal place in the result.</para>
|
||||
Return the square root of the <parameter>operand</parameter>.
|
||||
The optional <parameter>scale</parameter> parameter sets the
|
||||
number of digits after the decimal place in the result.
|
||||
</para>
|
||||
<para>
|
||||
See also <function>bcpow</function>.</para>
|
||||
See also <function>bcpow</function>.
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
<refentry id="function.bcsub">
|
||||
<refnamediv>
|
||||
<refname>bcsub</refname>
|
||||
<refpurpose>Subtract one arbitrary precision number from another.</refpurpose>
|
||||
<refpurpose>
|
||||
Subtract one arbitrary precision number from another.
|
||||
</refpurpose>
|
||||
</refnamediv>
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
|
@ -201,19 +232,23 @@
|
|||
<funcdef>string <function>bcsub</function></funcdef>
|
||||
<paramdef>string <parameter>left operand</parameter></paramdef>
|
||||
<paramdef>string <parameter>right operand</parameter></paramdef>
|
||||
<paramdef>int <parameter><optional>scale</optional></parameter></paramdef>
|
||||
<paramdef>int
|
||||
<parameter><optional>scale</optional></parameter>
|
||||
</paramdef>
|
||||
</funcsynopsis>
|
||||
|
||||
<para>
|
||||
Subtracts the <parameter>right operand</parameter> from the
|
||||
<parameter>left operand</parameter> and returns the
|
||||
result in a string. The optional <parameter>scale</parameter>
|
||||
parameter is used to set the number of digits after the decimal
|
||||
place in the result.</para>
|
||||
Subtracts the <parameter>right operand</parameter> from the
|
||||
<parameter>left operand</parameter> and returns the result in a
|
||||
string. The optional <parameter>scale</parameter> parameter is
|
||||
used to set the number of digits after the decimal place in the
|
||||
result.
|
||||
</para>
|
||||
<para>
|
||||
See also <function>bcadd</function>.</para>
|
||||
See also <function>bcadd</function>.
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
</reference>
|
||||
|
||||
<!-- Keep this comment at the end of the file
|
||||
|
@ -226,7 +261,7 @@ sgml-always-quote-attributes:t
|
|||
sgml-indent-step:1
|
||||
sgml-indent-data:t
|
||||
sgml-parent-document:nil
|
||||
sgml-default-dtd-file:"../manual.ced"
|
||||
sgml-default-dtd-file:"../../manual.ced"
|
||||
sgml-exposed-tags:nil
|
||||
sgml-local-catalogs:nil
|
||||
sgml-local-ecat-files:nil
|
||||
|
|
Loading…
Reference in a new issue