我有这个将内容写入文本文件的函数:
function write($text){
fwrite($this->fp, '#' . date('H:i d.m.Y') . ': ' . $text . "\n\n");
}
每次调用它时,都会添加文本并调用新行。
但如果我做了这样的事情:
$text = 'some text \n\n Some more text.';
write($text)
那么文本中的换行符不是“工作”。
这是为什么?我错过了什么?
这是我用来记录调试数据的整个函数:
class logDebuggData {
private $fp = NULL;
function __construct($name='log', $dir=''){
$this->fp = fopen(TEMPLATE_DIR.$name.'.txt', 'a+');
}
function write($text){
fwrite($this->fp, '#' . date('H:i d.m.Y') . ': ' . $text . "\n\n");
}
function close(){
if ($this->fp) {
fclose($this->fp);
$this->fp = NULL;
}
}
function __destruct() {
$this->close();
}
}