这篇文章主要为大家详细介绍了php指定字符串查找子字符串的简单示例,具有一定的参考价值,可以用来参考一下。
对php在指定字符串中查找子字符串感兴趣的小伙伴,下面一起跟随四海网的小编两巴掌来看看吧!
/**
* php在指定字符串中查找子字符串
*
* @param
* @arrange 512-笔记网: q1010.com
**/
<?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");
/*** 来自四海网(www.q1010.com) ***/
输出:
/**
* php在指定字符串中查找子字符串
*
* @param
* @arrange 512-笔记网: q1010.com
**/
pos1 = (13); type is integer
pos2 = (0); type is integer
pos3 = (); type is boolean
pos3返回的是bool值,即没有找到子字符串
/*** 来自四海网(www.q1010.com) ***/
本文来自:http://www.q1010.com/173/1017-0.html
注:关于php指定字符串查找子字符串的简单示例的内容就先介绍到这里,更多相关文章的可以留意四海网的其他信息。
关键词:php在子字符串
四海网收集整理一些常用的php代码,JS代码,数据库mysql等技术文章。