Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 symfony2 并使用教义查询访问了一个实体,然后我将其传递给我的树枝模板。这个实体有我想循环遍历的变量,而不必显式地命名每个变量。有没有办法用树枝来做到这一点,或者我应该尝试不同的设计?
树枝文档说:
序列可以是数组或实现 Traversable 接口的对象。
因此,只要您实现Traversable接口之一(IteratorAggregate或Iterator),它就应该可以工作。