我的 PHP 脚本
$file_carrito=file("carrito.dat");
$x=0;
for($i=0;$i<sizeof($file_carrito);$i++)
{
$array_products_1[]=$file_carrito[$i];
$x++;
}
echo (array_count_values($array_products_1));
在这个简单的文件 .dat 中,存储用户添加的所有产品,并在每个案例中计算每个 id 和案例的产品总数
例如,我可以将一个产品的 5 个 id 和其他产品 id 的其他 4 个放入文件中,最后,这必须计算存储到 de dat 文件中的具有相同 id 的产品
例如:5支铅笔、3把椅子、2张桌子等等......
The problem it´s no works : echo (array_count_values($array_productos_1));
content of carrito.dat :
p1
p1
p1
p3
p3
p3
p2
p2
p2
p1
p1
With this function of array i want get :
Product p1 ---- (5)
Product p2 ----- (3) , etc
谢谢