有时当我下载文件时,它们看起来一团糟:我有:
<?php get_header(); ?>
<div class="art-contentLayout">
<?php include (TEMPLATEPATH . '/sidebar1.php'); ?>
<div class="art-content">
.
.
.
但当我下载时,它看起来:
<?php get_header(); ?><div class="art-contentLayout"><?php include (TEMPLATEPATH . /sidebar1.php'); ?><div class="art-content">...
有时因为这个原因,我会出现php错误。为什么会发生这种情况?我该如何避免这种情况的发生?感谢
PS:OS:Win 7,FTPclient:Filezilla,Editor:Notepad++,在编辑器中检查了文本换行,我说有时会发生
阅读关于换行符历史的文章(主要是LF与CRLF):http://en.wikipedia.org/wiki/Newline
在您的情况下,您只需要找到一个更好的文本编辑器来使用,它将保留行尾并正确显示文件。