gpt4 book ai didi

php - 在 php mysql 中将 php 变量作为参数传递

转载 作者:行者123 更新时间:2023-11-29 12:35:56 26 4
gpt4 key购买 nike

我是 php 新手。而不是使用

$result=mysql_fetch_assoc($qry)
$result['id'];

我想传递一个变量而不是像这样的id

$id='id';
$result=mysql_fetch_assoc($qry)
$result[$id];

我已经尝试过这样的操作,但不起作用。我如何传递变量作为参数来从数据库中获取值

最佳答案

mysql_fetch_assoc 为您提供多维数组。

$result = array(
array('id'=>`some_value`)
);

所以你可以这样做:

$ID = "id";
foreach($result as $row) {
echo $row[$ID] . "\n";
}

注意:

Please, don't use mysql_* functions in new code .

关于php - 在 php mysql 中将 php 变量作为参数传递,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26796063/

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