PHP String 函数
strlen() 函数返回字符串的长度。
strlen(string)
<?php echo strlen("Hello world!"); ?>
strlen("Hello world!")
输出:
12
Search: