NumberFormatter::getAttributenumfmt_get_attributeGet an attribute
&reftitle.description;
Object oriented style
NumberFormatterintegergetAttributeintegerattr
Procedural style
integernumfmt_get_attributeNumberFormatterfmtintegerattr
Get a numeric attribute associated with the formatter. An example of a
numeric attribute is the number of integer digits the formatter will
produce.
&reftitle.parameters;
fmtNumberFormatter object.
attr
Attribute specifier - one of the
numeric attribute constants.
&reftitle.returnvalues;
Return attribute value on success, or &false; on error.
&reftitle.examples;
numfmt_get_attribute example
]]>
OO example
getAttribute(NumberFormatter::MAX_FRACTION_DIGITS)."\n";
echo $fmt->format(1234567.891234567890000)."\n";
$fmt->setAttribute(NumberFormatter::MAX_FRACTION_DIGITS, 2);
echo "Digits: ".$fmt->getAttribute(NumberFormatter::MAX_FRACTION_DIGITS)."\n";
echo $fmt->format(1234567.891234567890000)."\n";
?>
]]>
&example.outputs;
&reftitle.seealso;
numfmt_get_error_codenumfmt_get_text_attributenumfmt_set_attribute