gpt4 book ai didi

php - 输出 array_count_values 提取键和值

转载 作者:行者123 更新时间:2023-12-03 23:27:11 25 4
gpt4 key购买 nike

这可能是新手。基本上我是l

$count_versions = array();
while ($row = mysql_fetch_array($result))
{
$email_build = $row1['build_info'];
$count_versions[] = $email_build;
}

现在,当我使用 print_r 时,我得到了这个

Array ( [2660] => 8 [2662] => 6 [2655] => 6 [2666] => 1 ) 

这很完美,现在我想做的就是输出这些值,例如

2660 - 8 votes
2662 - 6 votes
2655 - 6 votes
2666 - 1 votes

当我尝试这个时,它似乎将值分解回一个完整的数组,这会撤消我的 array_count_values 但我很难过

我意识到这个 foreach 循环没有任何意义,但它是我能得到的最接近的,任何我可以基本上打印它的想法就像 print_r 那样我可以稍后放在表格中

$i=0;
foreach ($count_versions as $version => $nums)
{
$i++;
echo "Version: " . $nums . " - " . $count_versions . "<br />";
}

最佳答案

使用 foreach 看起来很简单:

$count_versions = array ( "2660" => 8, "2662" => 6, "2655" => 6, "2666" => 1 );

foreach ($count_versions as $key => $value)
echo $key.' - '.$value.' votes<br>';

关于php - 输出 array_count_values 提取键和值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14154828/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com