我下載了phpexcel庫。我想要做的事情很簡單:打開位於同一目錄中的.xls文件,讀取特定的單元格並將該值保存爲變量(只有字母和數字在單元格中)。從單元獲取值並保存爲變量
我到目前爲止有:
<?php
/** Error reporting */
error_reporting(E_ALL);
ini_set('display_errors', TRUE);
ini_set('display_startup_errors', TRUE);
date_default_timezone_set('Europe/London');
define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />');
/** Include PHPExcel */
require_once dirname(__FILE__) . '/PHPExcel_1.8.0_doc/Classes /PHPExcel.php';
$inputFileName = 'inventory.xls';
/** Load $inputFileName to a PHPExcel Object **/
$objPHPExcel = PHPExcel_IOFactory::load($inputFileName);
// Get cell B8
$objPHPExcel->getActiveSheet()->getCellByColumnAndRow(0, 2)->getValue();
?>
因此,將'getValue()'調用的結果賦值給一個變量....'$ variableWhereYouWantToStoreTheValue = $ objPHPExcel-> getActiveSheet() - > getCellByColumnAnd Row(0,2) - > getValue();'這真的是PHP 101 –
即時通訊非常抱歉,我不知道我怎麼會這麼笨xDD 謝謝你一噸^^ – finua