{$smarty.post.email}
输出“email protected(https://stackoverflow.com/cdn-cgi/l/email-protection)“{$smarty.post.email|count}
输出“1”而不是“14”-字符串长度。{$smarty.post.email[0]|count}
也输出“1”。
如何找到名为“email”的密钥的长度?
{$smarty.post.email}
输出“email protected(https://stackoverflow.com/cdn-cgi/l/email-protection)“{$smarty.post.email|count}
输出“1”而不是“14”-字符串长度。{$smarty.post.email[0]|count}
也输出“1”。
如何找到名为“email”的密钥的长度?
2条答案
按热度按时间5lhxktic1#
使用
来源:http://www.smarty.net/docsv2/en/language.modifier.count.characters.tpl
pcrecxhr2#
strlen返回字符串的长度。关键字名称是字符串。
count返回数组中键的个数。