Heim  >  Artikel  >  Backend-Entwicklung  >  PHP 文件操作类创建文件并写入_PHP教程

PHP 文件操作类创建文件并写入_PHP教程

WBOY
WBOYOriginal
2016-07-13 10:27:45982Durchsuche

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

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/814688.htmlTechArticleif (! empty ( $mode )) { $this-mode = $mode; } //判断写入的内容 if (! empty ( $content )) { $this-content = $content; } $handle = fopen ( $this-path, $this-mode ); //拆分换...
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn