- Timestamp:
- 2007/07/20 15:58:59 (19 years ago)
- Location:
- branches/feature-module-update
- Files:
-
- 1 edited
- 2 copied
-
. (copied) (copied from branches/rel) (1 prop)
-
html (copied) (copied from branches/rel/html)
-
html/admin/contents/campaign_csv.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/feature-module-update
-
Property
svn:ignore
set to
.cache
.settings
.projectOptions
-
Property
svn:ignore
set to
-
branches/feature-module-update/html/admin/contents/campaign_csv.php
r12157 r15078 7 7 require_once(DATA_PATH . "include/csv_output.inc"); 8 8 9 // CSV ½ÐÎϥǡ¼¥¿¤òºîÀ®¤¹¤ë¡£9 // CSV出力データを作成する。 10 10 function lfGetCSV($from, $where, $option, $arrval, $arrCsvOutputCols = "") { 11 11 global $arrCVSCOL; … … 21 21 $max = count($list_data); 22 22 for($i = 0; $i < $max; $i++) { 23 // ³Æ¹àÌܤòCSV½ÐÎÏÍѤËÊÑ´¹¤¹¤ë¡£23 // 各項目をCSV出力用に変換する。 24 24 $data .= lfMakeCSV($list_data[$i]); 25 25 } … … 27 27 } 28 28 29 // ³Æ¹àÌܤòCSV½ÐÎÏÍѤËÊÑ´¹¤¹¤ë¡£29 // 各項目をCSV出力用に変換する。 30 30 function lfMakeCSV($list) { 31 31 global $arrPref; … … 47 47 $line .= "\"".$tmp."\","; 48 48 } 49 // ʸËö¤Î","¤òÊÑ´¹49 // 文末の","を変換 50 50 $line = ereg_replace(",$", "\n", $line); 51 51 return $line;
Note: See TracChangeset
for help on using the changeset viewer.
