定义和用法
strlen() 函数返回字符串的长度。
语法
strlen(string)
例子
<?php echo strlen("Hello world!"); ?>
strlen("Hello world!")
输出:
12