Related Links : Search Engine Optimization | | Search Engine Marketing | Online Marketing | Freelance Programmer| SEO Thailand | SEO Expert | SEO services | PHP Programmer Thailand | SEO Tutorial | What is SEO |

  Home Our SEO Services SEO Expert Consultant Php Programmer Scripts| Email : sachin {at} jainsachin {dot} com

PHP | Set the pattern used by the formatter | Manual | Tutorial | Help

SEO Services



Website Programming in PHP / MYSQL



Friends


    Set the pattern used by the formatter

    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(123456) ) . "\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(123456) ) . "\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(123456)) . "\n";

    $fmt->setPattern("{0, number} trees hosting {1, number} monkeys" );
    echo 
    "New pattern: '" $fmt->getPattern() . "'\n";
    echo 
    "Formatted number: " $fmt->format(array(123456)) . "\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
    

    SEO Tutorial / Articles





    Php / Mysql Tutorial



    Articles



      Portfolio


      SEO by Jainsachin