php:常量变量附加到stdclass
是否可以通过附加这样的常量变量来调用数据库中的数据?
$table_result->description_{constant_varible};
因此,我打算调用的实际 stdclass 是 $table_result->description_B;
return '34'
;
谢谢
Is it possible to call a data from database by attaching a constant variable like this?
$table_result->description_{constant_varible};
So that the actual stdclass I intend to call is $table_result->description_B;
return '34'
;
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,这是可能的。例如通过
$obj->{expr}
Yes, it's possible. E.g. via
$obj->{expr}
您的解决方案应该有效(不确定)。
这是一个替代方案。
Your solution should work (not sure).
Here is an alternate.