程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> php入門教程:stripos 實例教程

php入門教程:stripos 實例教程

編輯:關於PHP編程

 

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


  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved