텍스트 파일에서 지정된 문자열을 포함하는 전체 줄을 검색하고 표시하는 PHP 스크립트
전체 줄을 검색하고 표시하는 PHP 스크립트를 만들려면 텍스트 파일의 지정된 문자열을 포함하는 줄을 따르려면 다음을 따르세요. 단계:
위 단계를 구현하는 PHP 스크립트는 다음과 같습니다.
<?php $file = 'numorder.txt'; $searchfor = 'aullah1'; header('Content-Type: text/plain'); $contents = file_get_contents($file); $pattern = preg_quote($searchfor, '/'); $pattern = "/^.*$pattern.*$/m"; if (preg_match_all($pattern, $contents, $matches)) { echo "Found matches:\n"; echo implode("\n", $matches[0]); } else { echo "No matches found"; } ?>
위 내용은 PHP를 사용하여 텍스트 파일에서 특정 문자열을 포함하는 줄을 검색하고 표시하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!