您现在的位置是:首页 > PHP函数

李清波 2015-10-01 PHP函数 1853 复制当前网址

strlen



PHP strlen() 函数

定义和用法

strlen() 函数返回字符串的长度。


语法

strlen(string)


参数描述
string必需。规定要检查的字符串。


例子

<?php
echo strlen("Hello world!");
?>

输出:

12


文章来源:https://liqingbo.com/blog-864.html

上一篇:strnatcasecmp

下一篇:stristr

评论