当我使用此功能时出现此错误 - 我在localhost

时间:2017-01-07 14:00:04

标签: php mysql xampp

  

致命错误:第48行的E:\ xampp \ htdocs \ E-Commerce \ functions \ functions.php内存不足(分配72876032)(试图分配160个字节)

enter image description here

enter image description here

1 个答案:

答案 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而不是不必要地生成结果集的查询也是一个更好的主意。