可以使用fgets()
函數來獲取行號。
喜歡的東西:
$handle = fopen("forms.php", "r");
$found = false;
if ($handle)
{
$linecount = 0;
while (($buffer = fgets($handle, 4096)) !== false)
{
if (strpos($buffer, "$searchterm") !== false)
{
echo "Found on line " . $countline + 1 . "\n";
$found = true;
}
$countline++;
}
if (!$found)
echo "$searchterm not found\n";
fclose($handle);
}
如果你還是想用file_get_contents()
,然後像做:
$homepage = file_get_contents("forms.php");
$exploded_page = explode("\n", $homepage);
$found = false;
for ($i = 0; $i < sizeof($exploded_page); ++$i)
{
if (strpos($buffer, "$searchterm") !== false)
{
echo "Found on line " . $countline + 1 . "\n";
$found = true;
}
}
if (!$found)
echo "$searchterm not found\n";
魔術串第一次出現短路。也不返回該行,只返回該字符串發生的行號。 – Hasteur 2012-03-15 16:52:26
我能夠通過回顯$行來獲得該行的內容。很棒! – 2012-03-15 16:56:17
歐,對不起,我以爲你只想要行號,現在已經修好了。 – martin 2012-03-15 19:47:52