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

发布于 2024-10-31 05:53:04 字数 333 浏览 1 评论 0原文

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

有效,但是..

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

不行。

我不想这样做,

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

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

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

Works but..

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

Does not.

I do not want to do this

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

I heard that it was considered bad practice to reference a key from an associative array without some sort of quotes around it. Is this true or is my first way of doing it preferred?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

一杆小烟枪 2024-11-07 05:53:04

您可以使用大括号:

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

或通过串联来做到这一点:

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

You can do this with braces:

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

Or through concatenation:

'CREATE TABLE IF NOT EXISTS ' . $tables['users'];
丢了幸福的猪 2024-11-07 05:53:04

您可以使用大括号。

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

You can use curly brackets.

"CREATE TABLE IF NOT EXISTS {$tables['users']}"; 
怎樣才叫好 2024-11-07 05:53:04

您可以执行以下操作:

$query = sprintf("CREATE TABLE IF NOT EXISTS %s", $tables['users']);

// do some other stuff

You could do the folling:

$query = sprintf("CREATE TABLE IF NOT EXISTS %s", $tables['users']);

// do some other stuff
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文