gpt4 book ai didi

php - 从字符串内部引用关联数组?

转载 作者:行者123 更新时间:2023-12-04 21:55:20 26 4
gpt4 key购买 nike

“如果 $tables[users] 不存在则创建表”;

有效但是..

“如果 $tables['users'] 不存在则创建表”;

没有。

我不想这样做

$usersTable = $tables['users'];
"CREATE TABLE IF NOT EXISTS $usersTable";

我听说从关联数组中引用键而不用引号引起来被认为是不好的做法。这是真的还是我首选的第一种方式?

最佳答案

你可以用大括号做到这一点:

"CREATE TABLE IF NOT EXISTS {$tables['users']}";

或者通过串联:

'CREATE TABLE IF NOT EXISTS ' . $tables['users'];

关于php - 从字符串内部引用关联数组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5560718/

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