PHP:如何从文本文件中删除最后一个换行符?

时间:2015-05-04 23:49:58

标签: php arrays text explode

在一所学校工作中,我使用PHP为我所在城市的虚构太空博物馆建造了一个网站。它有一个数据包含和数据咨询系统,但我在咨询中遇到问题,我想知道如何解决:如何从文件中删除最后一个换行符?

数据包含

在网站的限制区域,我有一个HTML5表单,其中包含5个字段(名称,地址,电话号码,性别和访问过的展览),它们通过方法POST将数据发送到PHP中的函数,该函数将其写入使用fwrite命令给出txt文件:

fwrite ($pointer, "$name | $addres | $telephone | $sex | $exhibitions " .PHP_EOL);

正如您所看到的,它在txt文件中写入表单上输入的数据以及换行符。指针是fopen用来打开我需要工作的文件的变量。输出示例:

  

MárcioAguiar| Belmiro Braga Street | 1234-5678 | M |太阳系行星
  Joana Tobias | Santos Dummont Avenue | 8765-4321 | F |黑洞,卫星

数据咨询

然后是咨询系统。它有一个循环,一直运行直到文件结束。在这个循环中有一个名为$buffer的变量,每次都会得到一行txt文件。然后explode创建一个名为$lines[$counter]的数组。为了很好地打印它,我使用array_combine我将另一个数组($keys)上的字段名称加到$lines[$counter]中写入的值,并将{i}加到$combined[$counter] }。然后循环结束,我在print_r内使用<pre></pre>来查看$combined中写入的数据,同时保留HTML否则会忽略的空格和符号。这是代码:

$keys = array ("Name", "Address", "Telephone", "Sex", "Visited exhibition");
for ($counter=0;!feof($reader);$counter++){
    $buffer = fgets($reader);
    $lines[$counter] = explode(" | ", $buffer);
    $combined[$counter] = array_combine($keys, $lines[$counter]);
}
echo "<pre>";
print_r($combined);
echo "</pre>";

输出示例:

    Array
    (
    [0] => Array
        (
            [Name] => Márcio Aguiar
            [Address] => Belmiro Braga Street
            [Telephone] => 1234-5678
            [Sex] => M
            [Visited exhibitions] => Planets of Solar System 

        )

    [1] => Array
        (
            [Name] => Joana Tobias
            [Address] => Santos Dummont Avenue
            [Telephone] => 8765-4321
            [Sex] => F
            [Visited exhibitions] => Black Holes, Satellites 

        )

    [2] => 
    )

您可以在此处看到2数组已创建为空白。它是由最后一行引起的,它只包含上面表格插入的换行符。我需要删除最后一个换行符,只有那个,但不知道如何。我想知道!当执行到达array_combine时,不知道导致错误的展示,因为需要两个数组具有相同数量的元素,2为空。这里的错误是:

  

警告:array_combine():这两个参数在第60行的E:\ Aluno \ Documents \ Wamp \ www \ trab_1 \ area_restrita \ consulta.php中应具有相同数量的元素

3 个答案:

答案 0 :(得分:3)

原始回答:

要从任何文字中删除尾随换行符,您可以使用trim(),但在您的情况下,只需在append mode中使用fopen

$handle = fopen("/path/to/file", "a");

然后摆脱PHP_EOL

fwrite ($pointer, "$name | $addres | $telephone | $sex | $exhibitions");

编辑:您说得对,附加不会附加到新行。我误解了。所以你可以像我之前提到的那样使用trim()。我使用file_get_contents()file_put_contents()创建了一个快速示例,它似乎可以执行您想要的操作:

<?php

$file = 'test.txt';

// Set existing contents (for testing sake)
$orig_contents = "bob | 123 fake street | 1234567890 | yes, please | no\n";
$orig_contents .= "bob | 123 fake street | 1234567890 | yes, please | no\n";
$orig_contents .= "bob | 123 fake street | 1234567890 | yes, please | no\n";
$orig_contents .= "bob | 123 fake street | 1234567890 | yes, please | no\n";
file_put_contents($file, $orig_contents);

// Here is how you could add a single new line with append mode
// Notice the trailing \n
file_put_contents($file, "billy | 456 fake street | 2345678901 | no | yes\n", FILE_APPEND);

// Get contents from the file and remove any trailing line breaks
$contents = trim(file_get_contents($file));

$keys = array ("Name", "Address", "Telephone", "Sex", "Visited exhibition");

// Explode based on the new line character
$lines = explode("\n", $contents);

foreach ($lines as $line) {
    $values = explode(" | ", $line);
    $combined[] = array_combine($keys, $values);
}

print_r($combined);

打印:

Array
(
    [0] => Array
        (
            [Name] => bob
            [Address] => 123 fake street
            [Telephone] => 1234567890
            [Sex] => yes, please
            [Visited exhibition] => no
        )

    [1] => Array
        (
            [Name] => bob
            [Address] => 123 fake street
            [Telephone] => 1234567890
            [Sex] => yes, please
            [Visited exhibition] => no
        )

    [2] => Array
        (
            [Name] => bob
            [Address] => 123 fake street
            [Telephone] => 1234567890
            [Sex] => yes, please
            [Visited exhibition] => no
        )

    [3] => Array
        (
            [Name] => bob
            [Address] => 123 fake street
            [Telephone] => 1234567890
            [Sex] => yes, please
            [Visited exhibition] => no
        )

    [4] => Array
        (
            [Name] => billy
            [Address] => 456 fake street
            [Telephone] => 2345678901
            [Sex] => no
            [Visited exhibition] => yes
        )

)

答案 1 :(得分:1)

问题在于您阅读文件的方式。在从文件中读取之前,您正在测试EOF。但是,当你在文件末尾尝试阅读时,feof()将不会成立。

相反,您应该测试fgets()是否返回一行。

for ($counter = 0; $buffer = fgets($reader); $counter++) {
    $lines[$counter] = explode(" | ", $buffer);
    $combined[$counter] = array_combine($keys, $lines[$counter]);
}

DEMO

要进一步解释,假设您有一个包含一行的文件。当$counter0时,您拨打feof(),然后返回false。然后,您阅读第一行,并将其添加到$lines$combined。然后你递增$counter并返回循环的开头。

$counter1时,您拨打feof()。它仍然不是真的,因为你还没有尝试在文件的末尾阅读。然后,您尝试阅读下一行,但没有行,fgets返回false并将其分配给$buffer。这被explode()视为空字符串,因此您向$lines$combined添加一个空数组。然后你递增$counter并返回循环的开头。

然后你调用feof(),这次它返回true,因为你试图在上一次迭代的文件末尾读取。所以循环结束了。

正如您从上面所看到的,即使文件只有1行,您最终会在数组中输入2个条目,因为直到您读得太多之后才测试EOF。

答案 2 :(得分:0)

如果要摆脱从数据库($ res)中提取的数据的最后一个换行符,可以使用以下代码段

for ($i=0; $i <count($res); $i++) {

    // If this is not last item then add items separated by line break
    if($i+1 < count($res)) {
        file_put_contents("file.txt", $res[$i].PHP_EOL, FILE_APPEND);
    }
    // If this is the last item, then don't append the final line break
    else {
        file_put_contents("file.txt", $res[$i], FILE_APPEND);
    }
}