smarty中先strip_tags过滤html标签后truncate截取文章运用

 2025-01-15  阅读 450  评论 8  点赞 200

摘要:strip_tags() 函数剥去 html、xml 以及 php 的标签。 复制代码 代码如下: smarty中可以使用strip_tags去除html标签,包括在< >之间的任何内容。 例如: index.php: 复制代码 代码如下: $smarty = new smarty; $smarty->assign(‘articletitle', “blind woman gets new kidney
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;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}

标签:phpphp教程

评论列表:

显示更多评论

发表评论:

管理员

承接各种程序开发,外贸网站代运营,外贸网站建设等项目
  • 内容2460
  • 积分67666
  • 金币86666

Copyright © 2024 LS'Blog-保定PHP程序员老宋个人博客 Inc. 保留所有权利。 Powered by LS'blog 3.0.3

页面耗时0.0291秒, 内存占用1.94 MB, 访问数据库30次

冀ICP备19034377号