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,它是一个数字。怎么可能修好?
doubleval() 可能会返回某种错误,因为数字“15,00”是欧洲格式而不是标准格式。您是否尝试过使用“15.00”代替?