从字符串内部引用关联数组?
"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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用大括号:
或通过串联来做到这一点:
You can do this with braces:
Or through concatenation:
您可以使用大括号。
You can use curly brackets.
您可以执行以下操作:
You could do the folling: