程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> PHP 文件操作類(創建文件並寫入) 生成日志

PHP 文件操作類(創建文件並寫入) 生成日志

編輯:關於PHP編程

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" ); //一次插入並換行

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved