downloads | documentation | faq | getting help | mailing lists | reporting bugs | php.net sites | links | my php.net 
search for in the  

<MessageFormatterIntlDateFormatter>
Last updated: Thu, 26 Jun 2008

MessageFormatter::setPattern

msgfmt_set_pattern

(No version information available, might be only in CVS)

msgfmt_set_pattern — Set the pattern used by the formatter

Description

Object oriented style

boolean MessageFormatter::setPattern ( string $pattern )

Procedural style

boolean msgfmt_set_pattern ( MessageFormatter $fmt , string $pattern )

Set the pattern used by the formatter

Parameters

fmt

The message formatter

pattern

The pattern string to use in this message formatter. The pattern uses an 'apostrophe-friendly' syntax; it is run through » umsg_autoQuoteApostrophe before being interpreted.

Return Values

Returns TRUE on success or FALSE on failure.

Examples

Example #1 msgfmt_set_pattern() example

<?php
$fmt
= msgfmt_create( "en_US", "{0, number} monkeys on {1, number} trees" );
echo
"Default pattern: '" . msgfmt_get_pattern( $fmt ) . "'\n";
echo
"Formatting result: " . msgfmt_format( $fmt, array(123, 456) ) . "\n";

msgfmt_set_pattern( $fmt, "{0, number} trees hosting {1, number} monkeys" );
echo
"New pattern: '" . msgfmt_get_pattern( $fmt ) . "'\n";
echo
"Formatted number: " . msgfmt_format( $fmt, array(123, 456) ) . "\n";
?>

Example #2 OO example

<?php
$fmt
= new MessageFormatter( "en_US", "{0, number} monkeys on {1, number} trees" );
echo
"Default pattern: '" . $fmt->getPattern() . "'\n";
echo
"Formatting result: " . $fmt->format(array(123, 456)) . "\n";

$fmt->setPattern("{0, number} trees hosting {1, number} monkeys" );
echo
"New pattern: '" . $fmt->getPattern() . "'\n";
echo
"Formatted number: " . $fmt->format(array(123, 456)) . "\n";
?>

The above example will output:

Default pattern: '{0,number} monkeys on {1,number} trees'
Formatting result: 123 monkeys on 456 trees
New pattern: '{0,number} trees hosting {1,number} monkeys'
Formatted number: 123 trees hosting 456 monkeys


add a noteadd a note User Contributed Notes
Set the pattern used by the formatter
There are no user contributed notes for this page.




<MessageFormatterIntlDateFormatter>
Last updated: Thu, 26 Jun 2008
show source | credits | sitemap | contact | advertising | mirror sites
Copyright © 2001-2005 The PHP Group
All rights reserved.
This unofficial mirror is operated at: http://phpbuilder.com/
Last updated: Tue Nov 1 20:20:59 2005 EST
Columns / Articles | Tips / Quickies | News | News Linking and RSS Feeds | Shared Code Library
Mail Archives | Support / Discussion Forums | Get Started! Links | Contribute! | Docs