gpt4 book ai didi

php - 如何从数组数组中获取数组 (PHP)

转载 作者:行者123 更新时间:2023-12-04 05:07:47 26 4
gpt4 key购买 nike

我在使用 print_r 时收到此信息:

Array ( 
[0] => 15
[1] => 15
[2] => 15
[3] => 15
[4] => 15
[5] => 16
[6] => 15
[7] => 15
[8] => 15
[9] => 14
... and so on ...
)

我想知道如何获得这些第二个值的数组(即):
$newArray = array(15,15,15,15,15,16,15,15,15,14, ... );

我曾尝试使用 array_values 但无济于事!

作为背景,我从数据库中的单个列中获得了这些结果,现在正尝试使用 HighRoller/HighCharts 绘制它们。

感谢您的帮助!

最佳答案

您没有数组数组。您有一个带有数字索引的值数组。除非我完全误解了你的问题......

Array ( 
[0] => 15
[1] => 15
[2] => 15
[3] => 15
[4] => 15
[5] => 16
[6] => 15
[7] => 15
[8] => 15
[9] => 14
... and so on ...
)

这意味着索引 0 处的数组的值为 15,依此类推。

关于php - 如何从数组数组中获取数组 (PHP),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15301378/

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