返回介绍

排版辅助函数

发布于 2019-10-31 06:05:19 字数 2280 浏览 1024 评论 0 收藏 0

排版辅助函数文件包含了文本排版相关的一些函数。

  • 加载辅助函数
  • 可用函数

加载辅助函数

该辅助函数通过下面的代码加载:

$this->load->helper('typography');

可用函数

该辅助函数有下列可用函数:

auto_typography($str[, $reduce_linebreaks = FALSE])
参数:
  • $str (string) -- Input string
  • $reduce_linebreaks (bool) -- Whether to reduce multiple instances of double newlines to two
返回:

HTML-formatted typography-safe string

返回类型:

string

格式化文本以便纠正语义和印刷错误的 HTML 代码。

这个函数是 CI_Typography::auto_typography() 函数的别名。 更多信息,查看 排版类

Usage example:

$string = auto_typography($string);

注解

格式排版可能会消耗大量处理器资源,特别是在排版大量内容时。 如果你选择使用这个函数的话,你可以考虑使用 缓存

nl2br_except_pre($str)
参数:
  • $str (string) -- Input string
返回:

String with HTML-formatted line breaks

返回类型:

string

将换行符转换为 <br /> 标签,忽略 <pre> 标签中的换行符。除了对 <pre> 标签中的换行处理有所不同之外,这个函数和 PHP 函数 nl2br() 是完全一样的。

使用示例:

$string = nl2br_except_pre($string);
entity_decode($str, $charset = NULL)
参数:
  • $str (string) -- Input string
  • $charset (string) -- Character set
返回:

String with decoded HTML entities

返回类型:

string

这个函数是 CI_Security::entity_decode() 函数的别名。 更多信息,查看 安全类

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文