當前位置: 首頁>>代碼示例>>PHP>>正文


PHP CSV::append方法代碼示例

本文整理匯總了PHP中CSV::append方法的典型用法代碼示例。如果您正苦於以下問題:PHP CSV::append方法的具體用法?PHP CSV::append怎麽用?PHP CSV::append使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在CSV的用法示例。


在下文中一共展示了CSV::append方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: saveToCSV

 function saveToCSV()
 {
     $csv = new CSV("./output/csv/" . $this->output . ".csv");
     $csv->addArrayHeader(array("trcid", "title", "shortdescription", "longdescription", "calendarsummary", "titleEN", "shortdescriptionEN", "longdescriptionEN", "calendarsummaryEN", "types", "ids", "locatienaam", "city", "adres", "zipcode", "latitude", "longitude", "urls", "media", "thumbnail", "datepattern_startdate", "datepattern_enddate", "singledates", "lastupdated"));
     foreach ($this->items as $item) {
         $csv->addArray($item);
     }
     if ($this->append) {
         $csv->append();
     } else {
         $csv->write();
     }
     $this->debug("Saved as CSV (" . $this->output . ")");
 }
開發者ID:erfgoed-en-locatie,項目名稱:artsholland-platform,代碼行數:14,代碼來源:items.php

示例2: saveToCSV

 function saveToCSV()
 {
     $csv = new CSV($this->output);
     $csv->addArrayHeader(array("trcid", "title", "shortdescription", "longdescription", "calendarsummary", "titleEN", "shortdescriptionEN", "longdescriptionEN", "calendarsummaryEN", "types", "ids", "locatienaam", "city", "adres", "zipcode", "latitude", "longitude", "urls", "media", "thumbnail", "datepattern_startdate", "datepattern_enddate", "singledates", "type1", "lastupdated"));
     foreach ($this->items as $item) {
         $csv->addArray($item);
     }
     if ($this->append) {
         $csv->append();
     } else {
         $csv->write();
     }
     $this->debug("Saved as CSV (" . $this->output . ")");
     $this->saveToJSON();
     /*
     $fname = substr($this->output, strrpos($this->output, "/") + 1);
     //And copy to amsterdamopendata.nl/files
     $domain = 'amsterdamopendata.nl';
     $domain = "217.77.130.133"; //Using IP directly because amsterdamopendata.nl is known to web.redant.net and is trying to connect locally.
     $user = 'ftpadmin';
     $password = 'Vae4eero';
     
     $sftp = new Net_SFTP($domain, 22, 30);
     if (!$sftp->login($user, $password)) {
       exit('Login Failed');
     } else {
       $sftp->chdir('files');
       $sftp->put($fname, $csv->contents());
       $this->debug("Uploaded to amsterdamopendata.nl/files (" . $fname . ")");
     }
     */
 }
開發者ID:AmsterdamData,項目名稱:amsterdammarketing,代碼行數:32,代碼來源:items.php


注:本文中的CSV::append方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。