$fullTxt = "가나다라마바사";
$searchTxt = "나다";
if(strpos($fullTxt, $searchTxt) !== false) {
echo "있음";
} else {
echo "없음";
}
'[ Web 관련 ] > php' 카테고리의 다른 글
아파치 504 Gateway Timeout 문제 (0) | 2022.07.06 |
---|---|
404 에러시 메인 페이지로 이동 (0) | 2022.04.15 |
php mysql 쿼리 실행 오류 - Commands out of sync; you can't run this command now (0) | 2021.09.15 |
php 에서 mysql 프로시저 호출 (0) | 2021.09.14 |
배열 정렬 (0) | 2021.09.14 |