私は XLS ファイルを持っていて、そこから値を読みたいと思っています。
私はPHPExcelを使用していますが、初めてです。
これは私のPHPスクリプトです
set_time_limit(0);
error_reporting(E_ALL);
ini_set('display_errors', TRUE);
ini_set('display_startup_errors', TRUE);
require_once 'Classes/PHPExcel/IOFactory.php';
if (!file_exists("08102013_123230.xls"))
{
die("There's no Excel file to read from");
}
$objPHPExcel = PHPExcel_IOFactory::load("08102013_123230.xls");
$objWorksheet = $objPHPExcel -> getActiveSheet();
$test = $objWorksheet->getCellByColumnAndRow(5,5)->getValue();
echo "The value is :".$test;
echo "<br/><br/>End".time();
?>
これは私のExcelファイルがどのように見えるかです:
非常に単純なExcelシートから読み出そうとしましたが、うまくいきました。では、何がエラーになるのでしょうか?
ファイルの種類が xls ファイルではないか ...
助けてくれてありがとう!