Home >Backend Development >PHP Tutorial >换行有关问题

换行有关问题

WBOY
WBOYOriginal
2016-06-13 10:26:11775browse

换行问题
$fp = fopen("log.txt","a ");
fwrite($fp,date("Y-m-d H:i:s"));
fwrite($fp," ");
fwrite($fp,$_SERVER[REMOTE_ADDR]);
fwrite($fp," ");
fwrite($fp,$_SERVER[HTTP_X_REWRITE_URL]);
fwrite($fp," ");
fwrite($fp,$_SERVER[HTTP_USER_AGENT]);
fwrite($fp," ");
fwrite($fp,$_SERVER["HTTP_REFERER"]);
fwrite($fp," ");
fclose($fp); 
?>

这个是记录访问者ip的。怎么让写在txt里面换行啊,这是在一行显示的

------解决方案--------------------
在每个要换行的地方加入换行符就可以了。
fwrite($fp,"\t\r\n");
------解决方案--------------------

PHP code
$fp = fopen("log.txt","a ");fwrite($fp,date("Y-m-d H:i:s").PHP_EOL); //用PHP_EOL换行吧,跨平台的<br><font color="#e78608">------解决方案--------------------</font><br>PHP.EOL 和 \n都行的<br><font color="#e78608">------解决方案--------------------</font><br>fwrite($fp," ");<br>改为<br>fwrite($fp,PHP_EOL);<div class="clear">
                 
              
              
        
            </div>
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn