字符串

PHP 字符串计算 strlen、strpos 与 strrpos 函数

PHP 字符串计算 strlen、strpos 与 strrpos 函数

PHP 字符串计算 strlen、strpos 与 strrpos 函数

PHP 字符串计算

计算字符串的长度或定位字符串出现的位置。

相关函数如下:

  • strlen():取得字符串的长度
  • strpos():定位字符串第一次出现的位置
  • strrpos():定位字符串最后一次出现的位置

strlen()

strlen() 函数用于取得字符串的长度,返回一个整型。

语法:

string substr( string string )

例子:

<?php
echo strlen('abc def');		//输出 7
echo strlen('ab北京');		//输出 6 ,UTF-8编码下输出 8
?>

strpos()

strpos() 函数用于定位字符串第一次出现的位置,返回整型。

语法:

int strpos ( string string, mixed needle [, int start] )
参数说明如下:
参数说明
string要处理的字符串
needle要定位的字符串
start可选,定位的起始位置

例子:

<?php
echo strpos('abcdef', 'c');	//输出 2
?>

strrpos()

strrpos() 函数用于定位字符串最后一次出现的位置,返回整型。

语法:

int strpos ( string string, mixed needle [, int start] )

strrpos() 函数用法与 strpos() 类似,只不过 strrpos() 用于取得指定字串最后出现的位置。

例子:

<?php
$str = "This function returns the last occurance of a string";
$pos = strrpos($str, "st");
if($pos !== FALSE){
    echo '字串 st 最后出现的位置是:',$pos;
} else {
    echo '查找的字符串中没有 in 字串';
}
?>

运行该例子,浏览器输出:

字串 st 最后出现的位置是:46

本文属原创,转载请注明原文:http://www.zhimatong.com/jiaocheng/58.html

为保证教程的实用性及扩大知识面覆盖,如果您有相似问题而未解决,可联系在线客服免费技术支持。

内容有用

联系
顾问

在线
客服
购物车
账号登录

没有账号?立即注册

忘记密码

登录即同意用户协议没有账号? 立即注册
账号注册
我已阅读并同意用户协议
立即注册
注册即同意用户协议已有账号? 立即登录
找回密码

操作步骤:邮箱验证->设置新密码

注册即同意用户协议已有账号? 立即登录