Heim > Artikel > Backend-Entwicklung > smartprinter虚拟打印机 php smarty模版引擎中变量操作符及使用方法
smarty常用的20个变量操作符 * 使用语法:{变量名|操作符:}
* capitalize ---首字母大写
* count_characters ---计算字符数
* cat ---连接字符串
* count_paragraphs ---计算段落数
* count_sentences ---计算句数
* count_words ---计算词数
* date_format ---时间格式
* default ---默认
* escape ---转码
* indent ---缩进
* lower ---小写
* nl2br ---换行符替换为
* regex_replace ---正则替换
* replace ---替换
* spacify ---插空
* string_format ---字符串格式化
* strip ---去除多余空格
* strip_tags ---去除html标签
* truncate ---截取
* upper ---大写
* wordwrap --约束行宽
使用方法:
index.php
复制代码 代码如下:
include("smarty_inc.php");
$name = "My name is MaJi,age 22,sex boy.aaaaaa.";
$smarty->assign("title", $name);
$smarty->assign("row", $row);
$smarty->assign("d",strtotime("-0"));
$smarty->assign("nubmer", 342345.736524);
$smarty->display("index.html");
?>
以上就介绍了smartprinter虚拟打印机 php smarty模版引擎中变量操作符及使用方法,包括了smartprinter虚拟打印机方面的内容,希望对PHP教程有兴趣的朋友有所帮助。