PHP

[PHP] 특정 문자열 포함 여부 체크 strpos()

chsr 2021. 9. 15. 15:05
728x90
반응형

■ PHP 특정 문자열 포함 여부 체크 strpos()


문자열에 특정 문자열이 포함되어 있는지 확인하고자 할 때 사용함


 문법

strpos(string $haystack, string $needle, int $offset = 0): int|false

 사용법

$tmpString = "hello zxchsr tistory";  
$srhString = "tistory";  
  
if(strpos($tmpString, $srhString) !== false) {  
    // 포함
    echo "Yes";
} else {  
    // 미포함
    echo "No";
}
728x90
반응형