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中文網其他相關文章!