0

这是书中的示例,一个简单的视图模板

// app/View/Common/view.ctp 
<h1><?php echo $this->fetch('title'); ?></h1> 
<?php echo $this->fetch('content'); ?>

<div class="actions">
    <h3>Related actions</h3>
    <ul>
    <?php echo $this->fetch('sidebar'); ?>
    </ul> </div>

这就是它可以扩展的方式

// app/View/Posts/view.ctp
<?php
$this->extend('/Common/view');

$this->assign('title', $post);

我的问题是: 如何为(比如说)标题设置默认值/内容,以便在需要时覆盖?

谢谢!

4

1 回答 1

1

获取变量。如果它不为空,则回显它,否则回显默认值。

$title = $this->fetch('title');
echo !empty($title) ? $title : 'Default';
于 2012-09-11T15:11:53.550 回答