如何删除此PHP代码中的echo?

时间:2012-06-24 11:02:07

标签: php

我有以下PHP代码

#The facebook message
$fh = fopen('comments.txt', 'r') or die('Unable to open data1.txt');
while($line = fgetcsv($fh, 0, '||' )) {
   if ($line[0] == $name) {
       echo <<<EOL
My color is $line[2]
EOL;
       break; // if there's only ever one '5678' line in the, get out now.
   }
}
fclose($fh);
$fb = $line[2];

我想删除回声,请在用户的浏览器中删除“我的颜色是......”。如何删除代码而不会出现任何错误?

我尝试了很多次......我还是PHP的初学者。

感谢。

3 个答案:

答案 0 :(得分:2)

// echo <<<EOL
// My color is $line[2]
// EOL;

你可以注释掉那样的代码。

答案 1 :(得分:1)

如果您在if声明中没有任何治疗,您可以对整个区块进行评论:

#The facebook message
$fh = fopen('comments.txt', 'r') or die('Unable to open data1.txt');
while($line = fgetcsv($fh, 0, '||' )) {
   if ($line[0] == $name) {
       /*
       echo <<<EOL
       My color is $line[2]
       EOL;
       */
       break; // if there's only ever one '5678' line in the, get out now.
   }
}
fclose($fh);
$fb = $line[2]; 

答案 2 :(得分:1)

您可以注释掉或删除以下代码:

/*echo <<<EOL
My color is $line[2]
EOL;*/