php Smarty,计算数组键字符串的长度?

bejyjqdl  于 2023-10-15  发布在  PHP
关注(0)|答案(2)|浏览(106)

{$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”的密钥的长度?

pcrecxhr

pcrecxhr2#

$count = strlen($smarty.post.email);

$count = strlen($smarty[post][email]);

strlen返回字符串的长度。关键字名称是字符串。
count返回数组中键的个数。

相关问题