글 수정

작성자 본인만 수정할 수 있습니다

← 홈으로
2023.07.20 · 조회 9,003
txt 파일 검색 엔진? php 예제
<p>[code]</p><p>&lt;?php</p><p>// 검색어</p><p>$searchQuery = "your_search_keyword";</p><p><br></p><p>// 텍스트 파일이 저장된 디렉토리 경로</p><p>$filePath = "/path/to/your/text_files_directory/";</p><p><br></p><p>// 디렉토리 내의 파일 목록 읽기</p><p>$files = scandir($filePath);</p><p><br></p><p>// 검색어를 포함하는 파일 찾기</p><p>foreach ($files as $file) {</p><p>&nbsp; &nbsp; if (is_file($filePath . $file)) {</p><p>&nbsp; &nbsp; &nbsp; &nbsp; $content = file_get_contents($filePath . $file);</p><p>&nbsp; &nbsp; &nbsp; &nbsp; if (strpos($content, $searchQuery) !== false) {</p><p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; echo "파일명: " . $file . "&lt;br&gt;";</p><p>&nbsp; &nbsp; &nbsp; &nbsp; }</p><p>&nbsp; &nbsp; }</p><p>}</p><p><br></p><p>?&gt;</p><div>[/code]</div>