在 Kohana 中,如何在读取 ORM 数据时动态指定列名?
可以做这样的事情吗?显然我提供的 echo 语句失败了,有没有办法让它们与 ORM 一起工作?
$record_columns = $records->list_columns();
$records = $records->find_all();
foreach ($record_columns as $column) {
echo $record->$column;
echo $record[$column];
}
谢谢,
谢尔希
Is it possible to do something like this? Obviously the echo statements I provided fail, is there a way to make them work with ORM?
$record_columns = $records->list_columns();
$records = $records->find_all();
foreach ($record_columns as $column) {
echo $record->$column;
echo $record[$column];
}
Thanks,
Serhiy
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
像这样的东西吗?对于 Kohana 3.0.x,我正在使用这个。我还没有用 Kohana 3.1 尝试过,但它应该是类似的:
Something like this? For Kohana 3.0.x I am using this. I havn't tried it with Kohana 3.1 but it should be simular: