php实现指定字符串中查找子字符串的方法

2025-05-29 0 37

本文实例讲述了php实现指定字符串查找子字符串的方法。分享给大家供大家参考。具体分析如下:

对strpos()函数可以用来在php查找子字符串。strpos()函数将试图找到子字符串在源字符串中首次出现的位置。如果找到了,它会返回一个非负整数表示子字符串出现的位置。 否则它会返回一个布尔值false。

?

1

2

3

4

5

6

7

8

9

10

11
<?php

$haystack1 = "2349534134345w3mentor16504381640386488129";

$haystack2 = "w3mentor234953413434516504381640386488129";

$haystack3 = "center234953413434516504381640386488129fyi";

$pos1 = strpos($haystack1, "w3mentor");

$pos2 = strpos($haystack2, "w3mentor");

$pos3 = strpos($haystack3, "w3mentor");

print("pos1 = ($pos1); type is " . gettype($pos1) . "\\n");

print("pos2 = ($pos2); type is " . gettype($pos2) . "\\n");

print("pos3 = ($pos3); type is " . gettype($pos3) . "\\n");

?>

输出结果:

?

1

2

3
pos1 = (13); type is integer

pos2 = (0); type is integer

pos3 = (); type is boolean

pos3返回的是bool值,即没有找到子字符串

希望本文所述对大家的php程序设计有所帮助。

收藏 (0) 打赏

感谢您的支持,我会继续努力的!

打开微信/支付宝扫一扫,即可进行扫码打赏哦,分享从这里开始,精彩与您同在
点赞 (0)

声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。

快网idc优惠网 建站教程 php实现指定字符串中查找子字符串的方法 https://www.kuaiidc.com/102701.html

相关文章

发表评论
暂无评论