Home >php教程 >php手册 >php strlen() 获取字符串的长度

php strlen() 获取字符串的长度

WBOY
WBOYOriginal
2016-06-01 09:45:181280browse

定义和用法

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

 

语法

<code class="language-php">strlen(string)</code>
参数 描述
string 必需。规定要检查的字符串。

 

返回值

返回值: 若成功则返回字符串的长度,若字符串为空则返回 0。
PHP 版本: 4+
更新日志: 在 PHP 5.3.0 之前,该函数把数组当做字符串 Array,这样就返回一个长度为 5 的字符串,并产生一个 E_NOTICE 级别的错误。

 

实例

返回字符串 "manongjc.com" 的长度:

<code class="language-php"><?php echo strlen("manongjc.com");
?></code>

在线运行

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn