中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

php如何遍歷CSV類

發布時間:2021-09-02 11:45:11 來源:億速云 閱讀:95 作者:小新 欄目:開發技術

這篇文章主要介紹php如何遍歷CSV類,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

具體如下:

<?php
class CSVIterator implements Iterator
{ 
  const ROW_SIZE = 4096;
  private $filePointer;
  private $currentElement;
  private $rowCounter;
  private $delimiter;
  public function __construct( $file, $delimiter = ',' )
  {
    $this->filePointer = fopen( $file, 'r' );
    $this->delimiter  = $delimiter;
  }
  public function rewind()
  {
    $this->rowCounter = 0;
    rewind( $this->filePointer );
  }
  public function current()
  {
    $this->currentElement = fgetcsv($this->filePointer,self::ROW_SIZE,$this->delimiter);
    $this->rowCounter++;
    return $this->currentElement;
  }
  public function key()
  {
    return $this->rowCounter;
  }
  public function next()
  {
    return !feof( $this->filePointer );
  }
  public function valid()
  {
    if( !$this->next() )
    {
      fclose( $this->filePointer );
      return FALSE;
    }
    return TRUE;
  }
} // end class
?>

以上是“php如何遍歷CSV類”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

通海县| 赤城县| 尼勒克县| 满洲里市| 社旗县| 本溪市| 绵竹市| 夏津县| 东辽县| 郧西县| 岢岚县| 万安县| 白朗县| 长春市| 和平县| 岐山县| 左云县| 涟水县| 枝江市| 泰和县| 莱芜市| 敦化市| 乐清市| 临海市| 互助| 南康市| 江永县| 枣庄市| 香格里拉县| 临海市| 台北县| 吉木萨尔县| 长宁县| 宁安市| 聂拉木县| 金寨县| 温宿县| 宁化县| 巴中市| 通道| 济宁市|