Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はWarning: number_format() expects parameter 1 to be double error自分のコードを取得しています
Warning: number_format() expects parameter 1 to be double error
$tbl->addRow(); $tbl->addCell($name); $tbl->addCell('$' . number_format(doubleval($price), 2,',', ' ') );
$price が 15,00 という数値であることはわかっています。どうすれば修正できますか?
数値「15,00」が標準ではなくヨーロッパ形式であるため、 doubleval() が何らかのエラーを返す可能性があります。代わりに「15.00」を使用してみましたか?