zoukankan      html  css  js  c++  java
  • Read in text file line by line php newline not being detected

    I have a php function I wrote that will take a text file and list each line as its own row in a table.

    The problem is the classic "works fine on my machine", but of course when I ask somebody else to generate the .txt file I am looking for, it keeps on reading in the whole file as 1 line.  When I open it in my text editor, it looks just as how I would expect it with a new name on each line, but its the newline character or something throwing it off.

    So far I have come to the conclusion it might have something to do with whatever text editor they are using on their Mac system.

    Does this make sense? and is there any easy way to just detect this character that the text editor is recognizing as a new line and replace it with a standard one that php will recognize?

    UPDATE: Adding the following line solved the issue.

    ini_set('auto_detect_line_endings',true);

    Function:

    function displayTXTList($fileName) {

        if(file_exists($fileName)) {

            $file = fopen($fileName,'r');

            while(!feof($file)) {

                $name = fgets($file);

                echo('<tr><td align="center">'.$name.'</td></tr>');

            }

            fclose($file);

        } else {

            echo('<tr><td align="center">placeholder</td></tr>');

        }      

    }

  • 相关阅读:
    redis 篇
    redis 篇
    Url 简单讲解
    django 分组统计遇见的问题
    Django REST framework 自定义字段
    python 之 MRO 异常
    redis中的事务、lua脚本和管道的使用场景
    不实例化一个 class 的时候使用它的property
    转载牛人的英语学习方法,值得学习
    2017年值得学习的3个CSS特性
  • 原文地址:https://www.cnblogs.com/weaver1/p/2500722.html
Copyright © 2011-2022 走看看