What steps will reproduce the problem?
Use these code to read the file:
<?php
error_reporting(E_ALL ^ E_NOTICE);
require_once 'excel_reader2.php';
$data = new Spreadsheet_Excel_Reader("SDI2008_raw data bank_dummy data
altered.xls");
print $data->val(2, 2);
?>
What is the expected output? What do you see instead?
It should give me '1.1'.
But it gives me '@'.
There are also some more cell like this:
$data->val(1,16); # should give me '2000' but it give me '@'
$data->val(1,17); # should give me '2001' but it give me '@'
$data->val(1,19); # should give me '2003' but it give me '@'
Please provide any additional information below.
Original issue reported on code.google.com by koa...@gmail.com on 22 Dec 2009 at 8:32
Original issue reported on code.google.com by
koa...@gmail.com
on 22 Dec 2009 at 8:32Attachments: