数字の行が入力されたtxtファイルがあります...ユーザーがtxtファイルの特定の行をフィルタリングできるコードがあります
フィルタリングのコード:
<?php
$file = 'upload/filter.txt';
$searchfor = $_POST['search'];
$btn = $_POST['button'];
$sum = 0;
if($btn == 'search') {
//prevents the browser from parsing this as HTML.
header('Content-Type: text/plain');
// get the file contents, assuming the file to be readable (and exist)
$contents = file_get_contents($file);
// escape special characters in the query
$pattern = preg_quote($searchfor, '/');
// finalise the regular expression, matching the whole line
$pattern = "/^.*$pattern.*\$/m";
// search, and store all matching occurences in $matches
if(preg_match_all($pattern, $contents, $matches)){
echo "Found matches:\n";
echo implode("\n", $matches[0]);
}
else{
echo "No matches found";
}
}
?>
たとえば、フィルタリングの結果、テキスト ファイルの 1,000,000 行のうち 4 行が生成されます。
0100002291310106200140001020055460000000001000000072860103508104 0100002291320106200140001020055460000000005000000072860103508101 0100002291330106200140001020055460000000001000000072860103508102 0100002291340106200140001020055460000000005000000072860103508109
特定の列のみを選択し、PHPコードを使用してそれらを一緒に追加するコードが必要です...例私は列1〜10のみを追加したいので、構造は上記の行から次のようになります
構造:
0100002291
0100002291
0100002291
助けてください