开发者

cant upload file using phpexcel

开发者 https://www.devze.com 2023-03-25 03:49 出处:网络
i am currently using phpexcel library to read my excel file which is to be uploaded by user . but i cannot at this moment :(

i am currently using phpexcel library to read my excel file which is to be uploaded by user . but i cannot at this moment :(

i am using this code, i cannot开发者_StackOverflow社区 get the file path right at this moment and if some one could tell me , how to over ride existing file and renaming the input file.

  move_uploaded_file($_FILES["file"]["tmp_name"],
  "upload/" . $_FILES["file"]["name"]);
  $test= $_FILES["file"]["name"];
  echo "Stored in: " . "upload/" . $_FILES["file"]["name"];
  require_once('classes/phpexcel.php');
  $objReader = PHPExcel_IOFactory::createReader('Excel2007');
  $objReader->setReadDataOnly(true);
  $objPHPExcel = $objReader->load('upload/'.$test);
  $objWorksheet = $objPHPExcel->setActiveSheetIndex('0') ;

kindly help and thanks in advance

File is being transferred to the desired folder , i cannot open the file with phpexcel


I'd sanitize the destination file name on the move_uploaded_file. use something like tempnam() to generate a safe file name

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号