实例
<?php /** * 三个最常用的子串查询 */ //1.substr($str,n,n) 字符串|起始位置|获取长度 根据位置查询 $str = 'It\'s important to remember that this function does NOT replace newlines with tags.'; echo substr($str,5); echo '<br>'; echo substr($str,5,11); echo '<br>'; echo substr($str,-5);//负数表示从尾部开始取保留 echo '<br>'; //strstr($str,start,bool) 字符串|查找位置字符|true echo strstr($str,'important');//保留查询字符串后面所有的字符 echo '<br>'; echo strstr($str,'important',true); //保留查询字符之前的字符 echo '<br>'; //strpos() echo strpos($str,'remember');//查询字符串出现的位置 echo '<br>';
运行实例 »
点击 "运行实例" 按钮查看在线实例