php文件操作类的例子_php创建与写入日志文件

发布时间:2019-11-25编辑:脚本学堂
一个简单的php文件操作类的实例代码,用于创建并写入文件内容,需要的朋友参考下。

例子,php文件操作类实现代码。
 

复制代码 代码示例:

class log{
if (! empty ( $mode )) {
  $this->mode = $mode;
}
//判断写入的内容
if (! empty ( $content )) {
  $this->content = $content;
}
$handle = fopen ( $this->path, $this->mode );
//拆分换行
$string = explode ( ",", $this->content );
foreach ( $string as $v ) {
   fwrite ( $handle, $v . "rn" );
}
fclose ( $handle );
}

//调用实例
$log = new log ();
// $log->addlog (); //不传值 走默认值
// $log->addlog ( "./log", "a", " 内容1:$content1 内容2: $content2 内容3: $content3 " ); //传多个内容
// $log->addlog ( "./log", "a", "123,123,123" ); //一次插入并换行