2019-12-09 |

strpos()

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

语法:

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

例子:

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

0

流程控制

发表评论

    评价:
    验证码: 点击我更换图片
    最新评论