smarty中先strip_tags过滤html标签后truncate截取文章运用
程序员文章站
2023-10-18 00:00:39
strip_tags() 函数剥去 html、xml 以及 php 的标签。 复制代码 代码如下:
strip_tags() 函数剥去 html、xml 以及 php 的标签。
<?php echo strip_tags(“hello <b>world!</b>”); ?>
smarty中可以使用strip_tags去除html标签,包括在< >之间的任何内容。
例如:
index.php:
$smarty = new smarty;
$smarty->assign(‘articletitle', “blind woman gets <span style=”font-family: &amp;”>new kidney</span> from dad she hasn't seen in <strong>years</strong>.”);
$smarty->display(‘index.tpl');
index.tpl:
{$articletitle}
{$articletitle|strip_tags}
输出结果:
blind woman gets <span style=”font-family: helvetica;”>new kidney</span> from dad she hasn't seen in <strong>years</strong>.
blind woman gets new kidney from dad she hasn't seen in years.
文章截取:
{$article.content|truncate:35:”…”:true}
复制代码 代码如下:
<?php echo strip_tags(“hello <b>world!</b>”); ?>
smarty中可以使用strip_tags去除html标签,包括在< >之间的任何内容。
例如:
index.php:
复制代码 代码如下:
$smarty = new smarty;
$smarty->assign(‘articletitle', “blind woman gets <span style=”font-family: &amp;”>new kidney</span> from dad she hasn't seen in <strong>years</strong>.”);
$smarty->display(‘index.tpl');
index.tpl:
复制代码 代码如下:
{$articletitle}
{$articletitle|strip_tags}
输出结果:
复制代码 代码如下:
blind woman gets <span style=”font-family: helvetica;”>new kidney</span> from dad she hasn't seen in <strong>years</strong>.
blind woman gets new kidney from dad she hasn't seen in years.
文章截取:
复制代码 代码如下:
{$article.content|truncate:35:”…”:true}
上一篇: PHP实现链表的定义与反转功能示例
下一篇: 缓解晕车症状 只需七招
推荐阅读
-
smarty中先strip_tags过滤html标签后truncate截取文章运用
-
smarty中先strip_tags过滤html标签后truncate截取文章运用
-
smarty中先strip_tags过滤html标签后truncate截取文章运用_php技巧
-
smarty中先strip_tags过滤html标签后truncate截取文章运用
-
smarty中先strip_tags过滤html标签后truncate截取文章运用_php技巧
-
smarty中先strip_tags过滤html标签后truncate截取文章运用
-
smarty中先strip_tags过滤html标签后truncate截取文章运用