我从一个可以找到“免费”一词的 txt 文件中写出每一行。
<?php
$filename = "data.txt";
$fp = fopen($filename, "r") or die("Couldn't open $filename");
while(!feof($fp))
{ $line = fgets($fp);
if (preg_match('/free/',$line)) // Print the line if it contains the word 'Ravi'
print "$line<br>";
}
fclose($fp);
?>
我想将带有“免费”一词的每一行添加到下拉列表中,我可以在其中选择一个并将此值转发到我的电子邮件中。有可能吗?