gpt4 book ai didi

变量中的php变量

转载 作者:行者123 更新时间:2023-12-02 05:39:00 25 4
gpt4 key购买 nike

我有一段代码看起来像这样:

$result = mysql_query($queryc) or die(mysql_error());   

if(mysql_num_rows($result) > 0)
{
while($row = mysql_fetch_array($result, MYSQL_ASSOC))
{
echo $row['$field'];
}
}

假设代码在一个函数中,我想将 $field 传递给 $row[''] 我将如何实现?

换句话说,我正在尝试使用 $row['$field']; $field 在别处定义

最佳答案

假设你有这个函数定义:

function foo($field) {
// from that code you have given
....
echo $row[$field]; // no need of the quotation marks around $field
....
}

关于变量中的php变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4571623/

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