php 字符串中字符位置,php--某个字符在字符串中的位置比较

本文介绍了PHP中用于查找字符串的几个函数,包括 stripos()、strpos()、strripos() 和 strrpos()。这些函数用于确定子字符串在另一个字符串中的位置,其中 stripos 和 strripos 对大小写不敏感。示例代码展示了如何使用这些函数,并指出在判断结果时需要注意索引值从0开始。
摘要由CSDN通过智能技术生成

$haystack = ‘helloe‘;

$needle = ‘e‘;

$pos = stripos($haystack, $needle);

echo "\n";

echo $pos;die; // 加r的是5 ,不加r的是 1,索引值从0开始,所以判断时 要 false !== $pos 来判断

/*

stripos

(PHP 5)

stripos — Find the position of the first occurrence of a case-insensitive substring in a string

strpos

(PHP 4, PHP 5)

strpos — Find the position of the first occurrence of a substring in a string

查看一个字符在字符串中首次出现的位置,i 表示忽略大小写

strripos

(PHP 5)

strripos — Find the position of the last occurrence of a case-insensitive substring in a string

strrpos

(PHP 4, PHP 5)

strrpos — Find the position of the last occurrence of a substring in a string

查看一个字符在字符串中最后一次出现的位置,i 表示忽略大小写

*/

原文:http://www.cnblogs.com/lixiuran/p/5079645.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值