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.
我想要一个对象在我的部分。我想在部分中使用对象变量和函数。是否可以在 include_partial() 函数中传递对象?或者我怎样才能部分访问对象?我不想在 symfony 请求中设置对象。
这边走:
include_partial('moduleName/partialName', array( 'object1' => $Object1, 'object2' => $Object2 ));
然后在部分使用 $object1、$object2 等。