WeberDev.com PHP and MySQL Code

LOG IN
BEGINNER GUIDES  |  PHP CLASSES  |  CODE SEARCH  |  ARTICLES SEARCH  |  PHP FORUMS  |  PHP MANUAL  |  PHP FUNCTIONS LIST  |  WEB SITE TEMPLATES
Start typing to search for PHP and MySQL Code Snippets and Articles Search
Submit a code Example / Snippet Submit Your Code
Search Engine Optimization Monitor SEO Monitor
Web Site UpTime Monitor UpTime Monitor
WeberDev's Monthly code contest PHP Code Contest
Your Personal Examples List My Favorite Examples
Your Personal Articles List My Favorite Articles
Edit Account Info Update Your Profile
PHP Code Search
Web Development Forums
Learn MySQL Playing Trivia
PHPBB2 Templates
Web Development Index
PHP Web Logs (BLogs)
Web Development Resources
Web Development Content
PHPClasses
PHP Editor
PHP Jobs
Vision.To Design
Ajax Tutorials
PHP Programming Help
PHP/MySQL Programming
Webmaster Resources
Webmaster Forum
XML meta language
website builder
Submit Site
Forex Trading Online forex trading platform
Parse input string according to pattern

MessageFormatter::parse

msgfmt_parse

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

MessageFormatter::parse -- msgfmt_parseParse input string according to pattern

Description

Object oriented style

array MessageFormatter::parse ( string $value )

Procedural style

array msgfmt_parse ( MessageFormatter $fmt , string $value )

Parses input string and return any extracted items as an array.

Parameters

fmt

The message formatter

value

The string to parse

Return Values

An array containing the items extracted, or FALSE on error

Examples

Example #1 msgfmt_parse() example

<?php
$fmt 
msgfmt_create('en_US'"{0,number,integer} monkeys on {1,number,integer} trees make {2,number} monkeys per tree");
$res msgfmt_parse($fmt"4,560 monkeys on 123 trees make 37.073 monkeys per tree");
var_export($res);

$fmt msgfmt_create('de'"{0,number,integer} Affen über {1,number,integer} Bäume um {2,number} Affen pro Baum");
$res msgfmt_parse($fmt"4.560 Affen über 123 Bäume um 37,073 Affen pro Baum");
var_export($res);
?>

Example #2 OO example

<?php
$fmt 
= new MessageFormatter('en_US'"{0,number,integer} monkeys on {1,number,integer} trees make {2,number} monkeys per tree");
$res $fmt->parse("4,560 monkeys on 123 trees make 37.073 monkeys per tree");
var_export($res);

$fmt = new MessageFormatter('de'"{0,number,integer} Affen über {1,number,integer} Bäume um {2,number} Affen pro Baum");
$res $fmt->parse("4.560 Affen über 123 Bäume um 37,073 Affen pro Baum");
var_export($res);
?>

The above example will output:

 
 array (   0 => 4560,   1 => 123,   2 => 37.073, ) array (   0 => 4560,   1 => 123,   2 => 37.073, )