コード例 #1
0
ファイル: Decode.php プロジェクト: techart/tao
 /**
  * Возвращает следующий элемент итератора
  *
  */
 public function next()
 {
     $this->current = ($line = $this->read_line()) === null ? null : MIME::decode_qp($line);
     $this->count++;
 }