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 Keyword Suggestion Scripts|Articles| Email : sachin {at} jainsachin {dot} com

PHP | Format a currency value | Manual | Tutorial | Help

SEO Services



Website Programming in PHP / MYSQL



SEO Tools




    Friends


      Format a currency value

      NumberFormatter::formatCurrency

      numfmt_format_currency

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

      numfmt_format_currency — Format a currency value

      Description

      Object oriented style

      string NumberFormatter::formatCurrency ( double $value , string $currency )

      Procedural style

      string numfmt_format_currency ( NumberFormatter $fmt , double $value , string $currency )

      Format the currency value according to the formatter rules.

      Parameters

      fmt

      NumberFormatter object.

      value

      The numeric currency value.

      currency

      The 3-letter ISO 4217 currency code indicating the currency to use.

      Return Values

      String representing the formatted currency value.

      Examples

      Example #1 numfmt_format_currency() example

      <?php
      $fmt 
      numfmt_create'de_DE'NumberFormatter::CURRENCY );
      echo 
      numfmt_format_currency($fmt1234567.891234567890000"EUR")."\n";
      echo 
      numfmt_format_currency($fmt1234567.891234567890000"RUR")."\n";
      $fmt numfmt_create'ru_RU'NumberFormatter::CURRENCY );
      echo 
      numfmt_format_currency($fmt1234567.891234567890000"EUR")."\n";
      echo 
      numfmt_format_currency($fmt1234567.891234567890000"RUR")."\n";
      ?>

      Example #2 OO example

      <?php
      $fmt 
      = new NumberFormatter'de_DE'NumberFormatter::CURRENCY );
      echo 
      $fmt->formatCurrency(1234567.891234567890000"EUR")."\n";
      echo 
      $fmt->formatCurrency(1234567.891234567890000"RUR")."\n";
      $fmt = new NumberFormatter'ru_RU'NumberFormatter::CURRENCY );
      echo 
      $fmt->formatCurrency(1234567.891234567890000"EUR")."\n";
      echo 
      $fmt->formatCurrency(1234567.891234567890000"RUR")."\n";
      ?>

      The above example will output:

      1.234.567,89 €
      1.234.567,89 RUR
      1 234 567,89€
      1 234 567,89р.
      

      SEO Tutorial / Articles





      Php / Mysql Tutorial



      Articles



        Other Topics



        SEO by Jainsachin