require_once "./PHPExcel/IOFactory.php";
//引入excel文件
$excel = PHPExcel_IOFactory::load($file);
//设置为默认表
$excel -> setActiveSheetIndex(0);
//获取表格数量
$sheetCount = $excel->getSheetCount();
//获取行数
$row = $excel->getActiveSheet()->getHighestRow();
//获取列数
$col = $excel->getActiveSheet()->getHighestColumn();
echo '表格数量:'.$sheetCount.';行数:'.$row.';列数:'.$col;
$data = [];
for ($i=1;$i<=$row;$i++){
for ($c = 'A';$c<=$col;$c++){
$data[]=$excel->getActiveSheet()->getCell($c.$i)->getValue();
echo '
';
print_r($data);
}
效果图:
框架外的PHP读取.env文件(php5.6、7.3可用版)
背景:由于项目需要,在框架外(public文件夹下)新建了一个原生的php文件,由于不知道怎么解决。只需要在宝塔上的php相应的版本上把禁用函数去除即可。其他的参数自己根据代码获取,代码简单,自己读吧。“框架外的php文件,怎么使用DB操作”(我的环境 nginx php7,3)于是上网搜索了一早上也没能又方法。于是我使用了,原生连接方法。index.php文件。这里如果出现这样的问题。............
PHP面试题:请写一段程序,在服务器创建一个文件fruit.dat,将试题3中得到的数组写入到改文件中,然后写一段程序从文件中读取并还原数组@author zhuwenqiong
PHP面试题:请写一段程序,在服务器创建一个文件fruit.dat,将试题3中得到的数组写入到改文件中,然后写一段程序从文件中读取并还原数组@author zhuwenqiong