本文主要是介绍Warning: number_format() expects parameter 1 to be double, string given in,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
因为免费额度获取的问题,在PHP5.3上报错但获取到的应该是一个字符串,所以出错,应该这样改:
function price_format($price, $change_price = true)
{
$price = 0 + $price;//添加这一行,转换成数值
这篇关于Warning: number_format() expects parameter 1 to be double, string given in的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!