7

似乎 fgets 在它返回的所有内容之后都放置了一个空格。这是一些示例代码:

<?php
Echo "Opening " . $_SERVER{'DOCUMENT_ROOT'} . "/file.txt" . "...<br>";
$FileHandle = @Fopen($_SERVER{'DOCUMENT_ROOT'} . "/file.txt", "r");
If ($FileHandle){
    Echo "File opened:<br><br>";
    While (!Feof($FileHandle)){
        $Line = Fgets($FileHandle);
        Echo $Line . "word<br>"; //Should be LINECONTENTSword, no space.
    }
    Fclose($FileHandle);
}
?>

返回

Opening /var/www/vhosts/cqe.me/httpdocs/file.txt...
File opened:

First line word
Second line word
3rd line word
Another line of text word
Blablablaword

为什么行的内容和“单词”之间有空格?为什么文件末尾没有这个空格(Blablablaword)?

你能告诉我如何摆脱这个空间吗?非常感谢 :-)!

4

2 回答 2

14

fgets()返回一行换行符 ( \n)。然后,与所有其他空格一样,这将在 HTML 中呈现为空格。

要删除尾随换行符,请使用

$line = rtrim($line, "\r\n");
// Trims \r, \n and \r\n, which are all considered
// newlines on different platforms
于 2010-08-18T14:41:45.003 回答
7

我相信 fgets 也会返回行尾字符 (\n),这在 html 中呈现为空格。

如果要从行中删除所有尾随空格,可以使用rtrim

于 2010-08-18T14:34:41.790 回答