いくつかのデータを含むExcelファイルがあります。pear ライブラリを使用して、その Excel の 2 列目 (セル番号は b2、b3、b4、b5 ....) を更新できますか?
Spreadsheet_Excel_Reader() を使用して Excel を読みました。
$xlsFormatFile = UPLOADS_DIR.DS."my_xls_format.xls";
require_once (EXCEL_LIB_DIR.DS.'[excel_reader2.php][1]');
$data = new Spreadsheet_Excel_Reader($xlsFormatFile);
echo $data->dump(true, true);//Shows the content of the excel file in browser
どうすればデータを更新して保存できますか。サンプルコードやアドバイスをいただければ幸いです....
前もって感謝します。