1

我的 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

谢谢

4

2 回答 2

0

像这样计算你的价值观

$array = array('x', 'x', 'x', 'x', 'y', 'y');
$counts = array();
foreach($array as $value) {
    $counts[$value] = array_key_exists($value, $counts) ? $counts[$value]+1 : 1;
}

print_r($counts);

在你的情况下。数组填充

$array = explode("\n", file_get_contents(...));
于 2012-12-12T14:39:46.103 回答
0

简单的方法:

$data = file('carrito.dat');

print_r(array_count_values($data));

它将显示如下内容:

Array
(
    [p1] => 5
    [p3] => 3
    [p2] => 3
)
于 2012-12-12T14:48:27.333 回答