X-Git-Url: http://git.roojs.org/?p=Pman.Core;a=blobdiff_plain;f=SimpleExcel.php;fp=SimpleExcel.php;h=0ca12fc6d4d5ed31062f93bcb3ad5cf794cae50d;hp=c14257c6310882aed9e4e69f0f6beb16d128a432;hb=30edf7ef98f7b5e984929445b83a2a1c521f8bb2;hpb=0c9ec158754ed1a44c9af5c0ede778e857540fc6 diff --git a/SimpleExcel.php b/SimpleExcel.php index c14257c6..0ca12fc6 100644 --- a/SimpleExcel.php +++ b/SimpleExcel.php @@ -410,9 +410,10 @@ class Pman_Core_SimpleExcel extends Pman if ( (is_numeric($v) && strlen($v) > 1 && substr($v,0,1) == '0' && substr($v,1,1) != '.' ) || $dataFormat == 'string' ) { + //var_dump("Write ( {$r}, {$c} ) = " . $v); $worksheet->writeString($start_row+$r, $c, $v, $format); } else { - + //var_dump("Write String ( {$r}, {$c} ) = " . $v); $worksheet->write($start_row+$r, $c, $v, $format); }