(PHP 5 >= 5.3.0, PHP 7, PECL intl >= 1.0.0)
NumberFormatter::getPattern -- numfmt_get_pattern — Get formatter pattern
Object oriented style
public NumberFormatter::getPattern ( ) : string
Procedural style
numfmt_get_pattern ( NumberFormatter $fmt ) : string
Extract pattern used by the formatter.
fmt
NumberFormatter object.
Pattern string that is used by the formatter, or false
if an error happens.
Example #1 numfmt_get_pattern() example
<?php $fmt = numfmt_create( 'de_DE', NumberFormatter::DECIMAL ); echo "Pattern: ".numfmt_get_pattern($fmt)."\n"; echo numfmt_format($fmt, 1234567.891234567890000)."\n"; numfmt_set_pattern($fmt, "#0.# kg"); echo "Pattern: ".numfmt_get_pattern($fmt)."\n"; echo numfmt_format($fmt, 1234567.891234567890000)."\n"; ?>
Example #2 OO example
The above example will output:
© 1997–2020 The PHP Documentation Group
Licensed under the Creative Commons Attribution License v3.0 or later.
https://www.php.net/manual/en/numberformatter.getpattern.php