致命错误:第48行的E:\ xampp \ htdocs \ E-Commerce \ functions \ functions.php内存不足(分配72876032)(试图分配160个字节)
答案 0 :(得分:3)
您正无限地执行此功能。
更改
echo total_times();
到
echo $count_items;
也许是一个更好的主意
return $count_items;
当你调用这个函数时,就像这样做
$count = total_time();
echo $count;
最好将连接$con
作为参数传递给这样的函数并移除global $con;
$count = total_time($con);
运行SELECT COUNT(*) as tot
而不是不必要地生成结果集的查询也是一个更好的主意。