Ignore:
Timestamp:
2007/03/10 21:35:02 (19 years ago)
Author:
nanasess
Message:

UTF-8 へ変換

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/comu/html/admin/order/index_csv.php

    r15 r11729  
    66 */ 
    77require_once(DATA_PATH . "include/csv_output.inc"); 
    8 /*------  /admin/contents/inpuiry.php ¤«¤é¤â¸Æ¤Ó½Ð¤·¤Þ¤¹¡£(11/18 fukuda) ---*/ 
     8/*------  /admin/contents/inpuiry.php からも呼び出します。(11/18 fukuda) ---*/ 
    99 
    10 // CSV½ÐÎϥǡ¼¥¿¤òºîÀ®¤¹¤ë¡£ 
     10// CSV出力データを作成する。 
    1111function lfGetCSV($from, $where, $option, $arrval, $arrCsvOutputCols = "") { 
    1212    global $arrCVSCOL; 
     
    2222    $max = count($list_data); 
    2323    for($i = 0; $i < $max; $i++) { 
    24         // ³Æ¹àÌܤòCSV½ÐÎÏÍѤËÊÑ´¹¤¹¤ë¡£ 
     24        // 各項目をCSV出力用に変換する。 
    2525        $data .= lfMakeCSV($list_data[$i]); 
    2626    } 
     
    2828} 
    2929 
    30 // ³Æ¹àÌܤòCSV½ÐÎÏÍѤËÊÑ´¹¤¹¤ë¡£ 
     30// 各項目をCSV出力用に変換する。 
    3131function lfMakeCSV($list) { 
    3232    global $arrPref; 
     
    5656        $line .= "\"".$tmp."\","; 
    5757    } 
    58     // ʸËö¤Î","¤òÊÑ´¹ 
     58    // 文末の","を変換 
    5959    $line = ereg_replace(",$", "\n", $line); 
    6060    return $line; 
Note: See TracChangeset for help on using the changeset viewer.