忍者ブログ
 

東京・赤坂のシステム開発会社プラムザで働く、プログラマーの学習記録。

PHPのnumber_format関数の挙動の変化について

×

[PR]上記の広告は3ヶ月以上新規記事投稿のないブログに表示されています。新しい記事を書く事で広告が消えます。

コメント

ただいまコメントを受けつけておりません。

PHPのnumber_format関数の挙動の変化について

PHPのnumber_format関数の挙動はPHP-5.2系と、PHP-5.3以降では異なります。 PHP5.2.17では、アルファベット・記号、全角・半角スペースを引数に指定すると「0」を出力します。一方、PHP5.3以降ではエラーが発生してしまいます。
2014年現在、PHP-5.2系の環境からPHP-5.3系以降の環境にアップグレードする局面は段々と少なくなってきていますが、一応こういった変化もある事を備忘として記します。

テストコード

----number_format.php

<?php

$values = array(
    0,
    1,
    1237,
    '1237',
    '1234',
    null,
    '',
    ' ',
    ' ',
    '-',
    'a',
    '*',
    'あ',
);

foreach($values as $v) {
    echo number_format($v), "\n";
    //echo "raw   :'",  $v, "'\n";
    //echo "double:", number_format((double) $v, 5), "\n";
    //echo "float :", number_format((float) $v, 5), "\n";
    //echo "int   :", number_format((int) $v, 5), "\n";
}

実行結果

PHP-5.2.17

0
1
1,237
1,237
0
0
0
0
0
0
0
0
0

PHP-5.3以降

0
1
1,237
1,237
PHP Warning:  number_format() expects parameter 1 to be double, string given in /home/hato/work/sandbox/php/number_format.php on line 21

Warning: number_format() expects parameter 1 to be double, string given in /home/hato/work/sandbox/php/number_format.php on line 21

0
PHP Warning:  number_format() expects parameter 1 to be double, string given in /home/hato/work/sandbox/php/number_format.php on line 21

Warning: number_format() expects parameter 1 to be double, string given in /home/hato/work/sandbox/php/number_format.php on line 21

PHP Warning:  number_format() expects parameter 1 to be double, string given in /home/hato/work/sandbox/php/number_format.php on line 21


Warning: number_format() expects parameter 1 to be double, string given in /home/hato/work/sandbox/php/number_format.php on line 21

PHP Warning:  number_format() expects parameter 1 to be double, string given in /home/hato/work/sandbox/php/number_format.php on line 21

Warning: number_format() expects parameter 1 to be double, string given in /home/hato/work/sandbox/php/number_format.php on line 21

PHP Warning:  number_format() expects parameter 1 to be double, string given in /home/hato/work/sandbox/php/number_format.php on line 21

Warning: number_format() expects parameter 1 to be double, string given in /home/hato/work/sandbox/php/number_format.php on line 21

PHP Warning:  number_format() expects parameter 1 to be double, string given in /home/hato/work/sandbox/php/number_format.php on line 21

Warning: number_format() expects parameter 1 to be double, string given in /home/hato/work/sandbox/php/number_format.php on line 21

PHP Warning:  number_format() expects parameter 1 to be double, string given in /home/hato/work/sandbox/php/number_format.php on line 21

Warning: number_format() expects parameter 1 to be double, string given in /home/hato/work/sandbox/php/number_format.php on line 21

PHP Warning:  number_format() expects parameter 1 to be double, string given in /home/hato/work/sandbox/php/number_format.php on line 21

Warning: number_format() expects parameter 1 to be double, string given in /home/hato/work/sandbox/php/number_format.php on line 21
PR

コメント

プロフィール

HN:
はと
性別:
非公開

P R