php入門教程:stripos 實例教程
定義和用法
該stripos ( )函數返回位置,首次出現了字串的開始位置。
如果字符串是沒有發現,此功能返回FALSE 。
stripos(string,find,start)
參數 說明
string: 必須先,
find: 必須要查找的字符串
start: Optional. Specifies where to begin the search
好了下面我們來看看.stripos例子.
echo stripos("Hello world!","WO");
?>
輸出結果為.
6