gpt4 book ai didi

php - 我如何使用数组中的值? (php)

转载 作者:行者123 更新时间:2023-11-29 05:58:28 27 4
gpt4 key购买 nike

我想在数组的数组中使用值,例如:

$result  = $conn->query("SELECT performer,file_id,title,duration FROM 
databasebot WHERE performer = '$message' or title = '$message'");

$poets = array(
"keyboard" => array()
);


while ($row = mysqli_fetch_row($result)) {
$poets['keyboard'][] = array($row[2],$row[1]);
}

我想回显$row[1] 的$poets 值。我该怎么做?

最佳答案

遍历 $poets['keyboard'] 中的数组。在每个元素中,$poets[1] 将位于 [1] 子元素中。

foreach ($poets['keyboard'] as $kb) {
echo $kb[1];
}

关于php - 我如何使用数组中的值? (php),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47208074/

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