作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我无法使用 php idiorm/paris 获取 has_many 查询的结果。遵循 paris site 中的示例帖子的 has_many 结果作为对象返回。
太好了,我可以运行对象并访问各个方法,但我想要做的是将结果集作为关联数组传递给我的模板引擎进行显示。
例子:
class Post extends Model {
}
class User extends Model {
public function posts() {
return $this->has_many('Post'); // Note we use the model name literally - not a pluralised version
}
}
// Select a particular user from the database
$user = Model::factory('User')->find_one($user_id);
// Find the posts associated with the user
$posts = $user->posts()->find_many();
// echo each post id
foreach ($posts as $post) {
echo $post->id;
}
$post_list = $posts()->as_array(id,title,post,date);
最佳答案
将此方法添加到 idiorm.php 为我提供了所需的功能。
public function find_array() {
if (func_num_args() === 0) {
return $this->_run();
}
$args = func_get_args();
$array = array();
foreach ($this->_run() as $r) {
$array[] = array_intersect_key($r, array_flip($args));
}
return $array;
}
关于php - idiorm/paris has_many as_array 结果集,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9229422/
我无法使用 php idiorm/paris 获取 has_many 查询的结果。遵循 paris site 中的示例帖子的 has_many 结果作为对象返回。 太好了,我可以运行对象并访问各个方法
我正在执行一个简单的查询并想取回一个数组。根据 Kohana 3 指南附带的 ORM 教程,我认为我可以执行以下操作: ORM::factory('user')->find_all()->as_arr
我正在尝试调用一个 C 函数,该函数接受指向指针的指针并将其重定向到内部分配的一维数组,沿着这条线: typedef myStruct { const char* name; int
我是一名优秀的程序员,十分优秀!