PHP 判斷一個字符是否在字符串中

  1. strpos() - 查找字符串 在另外一字符串中 第一次出現的位置(區分大小寫)

  2. stripos() - 查找字符串 在另外一字符串中 第一次出現的位置(不區分大小寫)

  3. strrpos() - 查找字符串 在另外一字符串中 最後一次出現的位置(區分大小寫)

  4. strripos() - 查找字符串 在另外一字符串中 最後一次出現的位置(不區分大小寫)

參數:
  strripos(string,find,start)
  string:必需。規定要搜索的字符串。
  find:必需。規定要查找的字符。
  start可選。規定開始搜索的位置。

例子:php

1#spa

<?php
  $str = 'abcdef';
  $find   = 'abc';
  $pos = strpos($mystring, $findme);

  // 注意這裏使用的是 ===不能使用==
  // 由於若是沒有
字符串 就返回false,若是這個字符串位於字符串的開始的地方,就會返回0爲了區分0和false就必須使用等同操做符 === 或者 !==
code

  if ($pos === false) {
    echo "$find不在$str中";
  } else {
    echo "$find在$str";
  }
?>
ip

2#字符串

<?php
  $string = 'abcdef abcdef';
  $find = strpos($string,'a',1); // $find = 7, 不是 0
?> 
string

相關文章
相關標籤/搜索