PHP读取xlsx Excel 2007文件 [英] PHP Read xlsx Excel 2007 file

查看:149
本文介绍了PHP读取xlsx Excel 2007文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用oleread读取上传的xls文件.但是我无法读取以excel-2007格式保存的xlsx文件.有人可以帮助我了解如何在PHP中读取xlsx文件.

I am using oleread to read uploaded xls file. But I am not able to read xlsx files saved in excel-2007 format. can someone help me on how to read xlsx file in PHP.

推荐答案

<?php
require_once 'SimpleXLSX.php';

if ( $xlsx = SimpleXLSX::parse('pricelist.xlsx') ) {
  print_r( $xlsx->rows() );
} else {
  echo SimpleXLSX::parse_error();
}
?>

SimpleXLSX

这篇关于PHP读取xlsx Excel 2007文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆