PHP
zsllxbb
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
PHPExcel出现错误101 net::ERR_CONNECTION_RESET
//文件名自动判断文件类型 $inputFileType = \PHPExcel_IOFactory::identify($uploadfile); //指定Excel类型,创建一个reader $objReader = \PHPExcel_IOFactory::createReader($inputFileType); $objPHPExcel = new PHPExce原创 2015-11-18 14:45:28 · 3518 阅读 · 0 评论 -
PHP获取目录下的文件(包括子目录中的文件)
/** *获取指定目录下的所有文件包括子目录中的文件 */ function getAllFiles($path) { //判断是否是目录 if(is_dir($path)) { if ( $handle = opendir ($path )) {原创 2015-11-18 14:40:54 · 400 阅读 · 0 评论
分享