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.
是否可以从也是 .ctp 文件的布局中调用 .ctp 文件?
我有一个默认布局,顶部栏、页脚,当然还有中间的变量 $content_for_layout。我想将顶栏和页脚分派到另外两个不同的 .ctp 文件中,我想从我的布局中调用它们。
你可以使用元素。
<?php echo $this->element('topbar'); echo $content_for_layout; echo $this->element('footer'); ?>
您可以使用元素,或者在 CakePHP 2.1 中,您可以签出blocks。