教义 findBy* 方法和获取数组

2022-01-16 00:00:00 php doctrine symfony1

使用 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();

相关文章