>  기사  >  백엔드 개발  >  关于PHP上传CSV有关问题。

关于PHP上传CSV有关问题。

WBOY
WBOY원래의
2016-06-13 12:30:31951검색

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


报错

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

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


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

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.