zencart zen_trunc_string字符截取

zencart zen_trunc_string字符截取

zencart 自身有一个函数来截取字符,zen_trunc_string挺好用的,也很方便,有时候会感觉名字太长,有些产品名字比较短,为了整体美观可以使用字符截取。
例如在新产品种截取字符
[php]
zen_trunc_string(zen_clean_html(stripslashes($new_products->fields[‘products_name’])), 50);
[/php]
//50表示要截取的字符数。
stripslashes() 函数返回一个去除转义反斜线后的字符串(\’ 转换为 ‘ 等等)。双反斜线(\\)被转换为单个反斜线(\)。
实例:
[php]
$str = "Is your name O\’reilly?";
// 输出: Is your name O’reilly?
echo stripslashes($str);
[/php]
zen_clean_html 也是zencart本身的自定义函数,用于去除html

发表评论

© 2022. powered by PHP 个人小站