• 冒险村物语
  • 英雄无敌3塔防
  • 驾考家园手游

PHP 文件操作类(创建文件并写入) 生成日志

2015-05-27

path = $path;		}				//判断操作方式 a追加写		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 . "/r/n" );		}		fclose ( $handle );	}}//使用$log = new log ();// $log->addlog ();	//不传值 走默认值// $log->addlog ( "./log", "a", " 内容1:$content1  内容2: $content2  内容3: $content3 " ); //传多个内容// $log->addlog ( "./log", "a", "123,123,123" ); //一次插入并换行

(免责声明:文章内容如涉及作品内容、版权和其它问题,请及时与我们联系,我们将在第一时间删除内容,文章内容仅供参考)

人气推荐

知识阅读

精彩推荐

  • 游戏
  • 软件
查看更多>>