Ignore:
Timestamp:
2007/07/20 15:58:59 (19 years ago)
Author:
nanasess
Message:

r15064 から svn cp
とりあえず暫定コミット.

  • UTF-8 に変更
  • slib.php, glib.php のクラス化
  • LC_Page の抽象化(一部)
Location:
branches/feature-module-update
Files:
1 edited
2 copied

Legend:

Unmodified
Added
Removed
  • branches/feature-module-update

    • Property svn:ignore set to
      .cache

      .settings

      .projectOptions
  • branches/feature-module-update/html/admin/contents/campaign_csv.php

    r12157 r15078  
    77require_once(DATA_PATH . "include/csv_output.inc"); 
    88 
    9 // CSV½ÐÎϥǡ¼¥¿¤òºîÀ®¤¹¤ë¡£ 
     9// CSV出力データを作成する。 
    1010function lfGetCSV($from, $where, $option, $arrval, $arrCsvOutputCols = "") { 
    1111    global $arrCVSCOL; 
     
    2121    $max = count($list_data); 
    2222    for($i = 0; $i < $max; $i++) { 
    23         // ³Æ¹àÌܤòCSV½ÐÎÏÍѤËÊÑ´¹¤¹¤ë¡£ 
     23        // 各項目をCSV出力用に変換する。 
    2424        $data .= lfMakeCSV($list_data[$i]); 
    2525    } 
     
    2727} 
    2828 
    29 // ³Æ¹àÌܤòCSV½ÐÎÏÍѤËÊÑ´¹¤¹¤ë¡£ 
     29// 各項目をCSV出力用に変換する。 
    3030function lfMakeCSV($list) { 
    3131    global $arrPref; 
     
    4747        $line .= "\"".$tmp."\","; 
    4848    } 
    49     // ʸËö¤Î","¤òÊÑ´¹ 
     49    // 文末の","を変換 
    5050    $line = ereg_replace(",$", "\n", $line); 
    5151    return $line; 
Note: See TracChangeset for help on using the changeset viewer.