stripos
是 PHP 中的一個字符串函數,用于查找子字符串在另一個字符串中首次出現的位置。它不區分大小寫。要處理特殊字符,你不需要對輸入字符串進行任何預處理,因為 stripos
會自動處理它們。
然而,如果你想在搜索子字符串之前對輸入字符串進行清理,可以使用以下方法:
str_replace()
或 preg_replace()
函數刪除或替換不需要的特殊字符。例如,如果你想刪除所有非字母數字字符,可以使用以下代碼:$input = "Hello, W@orld! 123";
$clean_input = preg_replace("/[^a-zA-Z0-9]+/", "", $input);
stripos()
之前,確保輸入字符串是 UTF-8 編碼的。這可以通過使用 mb_convert_encoding()
函數來實現:$input = "Hello, W@orld! 123";
$input_utf8 = mb_convert_encoding($input, "UTF-8", "auto");
然后,你可以使用清理后的輸入字符串調用 stripos()
函數:
$search = "world";
$position = stripos($input_utf8, $search);
這將返回子字符串 “world” 在清理后的輸入字符串中首次出現的位置。