txt 파일 검색 엔진? php 예제
페이지 정보
작성자 (192.♡.0.1) 작성일 23-07-20 23:24 조회 5,389 댓글 1본문
[code]
<?php
// 검색어
$searchQuery = "your_search_keyword";
// 텍스트 파일이 저장된 디렉토리 경로
$filePath = "/path/to/your/text_files_directory/";
// 디렉토리 내의 파일 목록 읽기
$files = scandir($filePath);
// 검색어를 포함하는 파일 찾기
foreach ($files as $file) {
if (is_file($filePath . $file)) {
$content = file_get_contents($filePath . $file);
if (strpos($content, $searchQuery) !== false) {
echo "파일명: " . $file . "<br>";
}
}
}
?>
[/code]
좋아요51
이 글을 좋아요하셨습니다
2kat님의 댓글
2kat 아이피 (220.♡.000.000) 작성일?