PHPExcel不读取我的XLS文件

时间:2013-10-08 10:51:31

标签: php phpexcel xls

我有一个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文件的样子:

enter image description here

我试着从一个非常简单的excel-sheet读出然后它起作用了。那可能是什么错误?

也许文件类型不是xls文件或...

感谢您的帮助!

0 个答案:

没有答案