我覺得自己是地球上最大的笨蛋。但是我正在通過一個文本文件循環,試圖比較每一行並找到換行符......您知道......「\ n」。但我似乎無法比較琴絃! 這是我正在做的。PHP中的字符串比較
$filename = 'StatesCities.txt';
$file = file($filename);
$matchedLines = array();
foreach($file as $line) {
$matchesLines[] = $line;
if(strcmp($line, "La Mesa") == 0)
{
echo("Yeah");
}
echo($line);
echo("<br />");
}
修剪線:修剪($線)第一。 –
$ matchesLines [] = $ line; - >你想用這行做什麼? – LotusH
該行用於我打算稍後添加的功能 – SoftwareSavant