phpexcel類別庫讀取excel檔案的例子

WBOY
發布: 2016-07-25 08:53:01
原創
1036 人瀏覽過
  1. require_once('include/common.inc.php');
  2. require_once(rootpath . 'include/phpexcel/phpexcel/iofactory.php');
  3. $filepath = './file/xls/110713.xls';
  4. $filetype = phpexcel_iofactory::identify($filepath); //文件名自动判断文件类型
  5. $objreader = phpexcel_iofactory::createreader($filetype);
  6. $objphpexcel = $objreader->load($filepath);
  7. $currentsheet = $objphpexcel->getsheet(0); //第一个工作簿
  8. $allrow = $currentsheet->gethighestrow(); //行数
  9. $output = array();
  10. $pretype = '';
  11. #// bbs.it-home.org
  12. $qh = $currentsheet->getcell('a4')->getvalue();
  13. //按照文件格式从第7行开始循环读取数据
  14. for($currentrow = 7;$currentrow<=$allrow;$currentrow ){
  15. //判断每一行的b列是否为有效的序号,如果为空或者小于之前的序号则结束
  16. $xh = (int)$currentsheet->getcell('b'.$currentrow)->getvalue();
  17. if(empty($xh))break;
  18. $tmptype = (string)$currentsheet->getcell('c'.$currentrow)->getvalue(); //赛事类型
  19. if(!empty($tmptype))$pretype = $tmptype;
  20. $output[$xh]['type'] = $pretype;
  21. $output[$xh]['master'] = $currentsheet->getcell('f'.$currentrow)->getvalue(); //主队
  22. $output[$xh]['guest'] = $currentsheet->getcell('h'.$currentrow)->getvalue(); //客队
  23. }
  24. //从当前行开始往下循环,取出第一个不为空的行
  25. for( ; ; $currentrow ){
  26. $xh = (int)$currentsheet->getcell('b'.$currentrow)->getvalue();
  27. if(!empty($xh))break;
  28. }
  29. for( ; $currentrow <= $allrow; $currentrow ){
  30. $xh = (int)$currentsheet->getcell('b'.$currentrow)->getvalue();
  31. if(empty($xh))break;
  32. $output[$xh]['rq'] = $currentsheet->getcell('i'.$currentrow)->getvalue();
  33. }
  34. header("content-type:text/html; charset=utf-8");
  35. echo '期号:' . $qh . "nn";
  36. if(!empty($output)){
  37. printf("%-5st%-15st%-40st%-40st%-5sn", '序号', '赛事类型', '主队', '客队', '让球值');
  38. foreach($output as $key => $row){
  39. $format = "%-5dt%-15st%-40st%-40st%-5sn";
  40. printf($format, $key, $row['type'], $row['master'], $row['guest'], $row['rq']);
  41. }
  42. }
  43. ?>
复制代码


來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板