【PHP】number_formatが出来ません

PHPで金額などの数字をカンマで3桁区切りにする場合
number_formatを使います。

number_format($Price);
など

 

でも、表示されない箇所が発生しました。

なぜだ??

 

解決方法は

方法1)
number_format((int)$Price);

方法2)
$Price=round($Price);
number_format($Price);

 

【PHP】 【number_format】 【Price】