首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > PHP >

关于PHP上传CSV有关问题。

2014-01-03 
关于PHP上传CSV问题。。。。超过13条就解析不了,直接空白报错,是环境配置问题还是什么,求助。。报错?php exit?

关于PHP上传CSV问题。。。。
超过13条就解析不了,直接空白报错,是环境配置问题还是什么,求助。。
关于PHP上传CSV有关问题。

报错


<?php exit;?>01-02 10:49:16 | 2 | fopen() [<a href='function.fopen'>function.fopen</a>]: Filename cannot be empty |
<?php exit;?>01-02 10:49:16 | 2 | fgetcsv() expects parameter 1 to be resource, boolean given | 
<?php exit;?>01-02 10:49:16 | 2 | fclose() expects parameter 1 to be resource, boolean given | 


<form name="myform" id="myform" action="index.php?m=price&amp;c=index&amp;a=insertalldo" method="post" enctype="multipart/form-data"><input name="pc_hash" type="hidden" value="4GxoOl"></form>



 $file=$_FILES["file"]; 
 $file_type = substr(strstr($file['name'],'.'),1);
 setlocale(LC_ALL, 'zh_CN');
 $row=1;
 $handle = fopen($file['tmp_name'],"r");
 while ($data = fgetcsv($handle,1000,',')){
 print_r($data);
  $row++;
           }  

[解决办法]
fgetcsv($handle,1000,',')  有没有可能 是那个1000小了,1000小于你csv文件中最长的一行了
[解决办法]
Filename cannot be empty
文件名不能为空

热点排行