2016-10-21 18:10:50 +00:00
<?xml version="1.0" encoding="utf-8"?>
2017-09-02 18:42:15 +00:00
<!-- $Revision$ -->
2016-10-21 18:10:50 +00:00
<refentry xml:id= "mongodb-bson-decimal128.construct" xmlns= "http://docbook.org/ns/docbook" xmlns:xlink= "http://www.w3.org/1999/xlink" >
<refnamediv >
<refname > MongoDB\BSON\Decimal128::__construct</refname>
<refpurpose > Construct a new Decimal128</refpurpose>
</refnamediv>
<refsect1 role= "description" >
&reftitle.description;
<methodsynopsis >
<modifier > final</modifier> <modifier > public</modifier> <methodname > MongoDB\BSON\Decimal128::__construct</methodname>
<methodparam choice= "opt" > <type > string</type> <parameter > value</parameter> </methodparam>
</methodsynopsis>
&mongodb.note.decimal128;
</refsect1>
<refsect1 role= "parameters" >
&reftitle.parameters;
<variablelist >
<varlistentry >
<term > <parameter > value</parameter> (<type > string</type> )</term>
<listitem >
<para >
A decimal string.
</para>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
<refsect1 role= "errors" >
&reftitle.errors;
<simplelist >
&mongodb.throws.argumentparsing;
<member > Throws <classname > MongoDB\Driver\Exception\InvalidArgumentException</classname> if <parameter > value</parameter> is not a valid decimal string.</member>
</simplelist>
</refsect1>
<refsect1 role= "examples" >
&reftitle.examples;
<example >
<title > <function > MongoDB\BSON\Decimal128::__construct</function> example</title>
<programlisting role= "php" >
< ![CDATA[
< ?php
var_dump(new MongoDB\BSON\Decimal128(1234.5678));
var_dump(new MongoDB\BSON\Decimal128(NAN));
var_dump(new MongoDB\BSON\Decimal128(INF));
?>
]]>
</programlisting>
&example.outputs.similar;
<screen >
< ![CDATA[
object(MongoDB\BSON\Decimal128)#1 (1) {
["dec"]=>
string(9) "1234.5678"
}
object(MongoDB\BSON\Decimal128)#1 (1) {
["dec"]=>
string(3) "NaN"
}
object(MongoDB\BSON\Decimal128)#1 (1) {
["dec"]=>
string(8) "Infinity"
}
]]>
</screen>
</example>
</refsect1>
<refsect1 role= "seealso" >
&reftitle.seealso;
<simplelist >
<member > <link xlink:href= "&url.mongodb.wiki.decimal128;" > Decimal128 floating-point format</link> </member>
<member > <link xlink:href= "&url.mongodb.docs.bson;" > BSON Types</link> </member>
</simplelist>
</refsect1>
</refentry>
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
indent-tabs-mode:nil
sgml-parent-document:nil
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
vim600: syn=xml fen fdm=syntax fdl=2 si
vim: et tw=78 syn=sgml
vi: ts=1 sw=1
-->