本文整理匯總了PHP中CString::truncate方法的典型用法代碼示例。如果您正苦於以下問題:PHP CString::truncate方法的具體用法?PHP CString::truncate怎麽用?PHP CString::truncate使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類CString
的用法示例。
在下文中一共展示了CString::truncate方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: getTeaser
public function getTeaser()
{
$helper = new CString();
return $helper->truncate(strip_tags($this->content), Yii::app()->params['entryTeaserLength']);
}
示例2: CString
" width="150" height="150" />
</div>
<div class="box-blog-2">
<a href="<?php
echo $entry->href;
?>
">
<span class="blog-title"><?php
echo $entry->title;
?>
</span>
</a>
<p>
<?php
$helper = new CString();
echo $helper->truncate(strip_tags($entry->content), Yii::app()->params['blogTeaserLength']);
?>
</p>
<a href="<?php
echo $this->createUrl('entry/view', array('id' => $entry->getPrimaryKey()));
?>
"><span id="style-for"><?php
echo Yii::t('flexiblearn', 'Read more');
?>
</span></a> </div>
</div><!--end-box-blog-->
<?php
}
?>
<?php
$this->widget('CLinkPager', array('pages' => $pages));