選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

Price.php 160B

1234567891011
  1. <?php
  2. namespace common\helpers;
  3. class Price {
  4. public static function format($number) {
  5. return number_format($number, 2).' €' ;
  6. }
  7. }