1.返回$needle在$str首次出現的位置。(大小寫敏感)。
2.從php5開始$needle支持多字符。php4只能用單個字符。
3.能找到$needle返回值范圍(0~strlen($str) - 1);找不到返回false;
$str = "hello world!";
strpos($str, 'w');//=>6
strpos($str, 'he');//=>0
strpos($str, 'ho'); //=>false
注意用 "===" 判斷返回值為0和false的情況。