沃梦达 / 编程问答 / php问题 / 正文

教义 findBy* 方法和获取数组

Doctrine findBy* methods and fetch array(教义 findBy* 方法和获取数组)

本文介绍了教义 findBy* 方法和获取数组的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

使用 Doctrine findBy 方法但返回数组而不是对象的最简洁方法是什么.

What is the cleanest way of using the Doctrine findBy methods but getting an array returned and not objects.

Doctrine::getTable('Table')->findOneById(x);

这可行,但返回一个学说对象.

That works but returns a doctrine object.

我仍然希望能够使用 find 方法,但我知道我无法添加

I'd still like to be able to use the find methods but I know I can't add

->fetchArray()

最后.

其他人有这个问题吗?

推荐答案

尝试使用 toArray

Doctrine::getTable('Table')->findOneById(x)->toArray();

这篇关于教义 findBy* 方法和获取数组的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本文标题为:教义 findBy* 方法和获取数组

基础教程推荐