Jump to content

Android file uploads


2inept

Recommended Posts

Hi

I have some PHP to upload files in a webbrowser but it seems to do an odd thing.

 

This problem could be with the php code or it could be an Android thing, I'm not sure.

 

It is supposed to send a multi file array.

 

On an Android, if you select

 

Documents/Images/Camera then multi select - it works fine

 

If you select

 

Documents/Photos/Camera and multi select - the phone only sends 1 image

 

So there seems to be a difference between "Images" and "Photos" but I don't understand why.

 

Any ideas?

 

Thanks

<?php

date_default_timezone_set('Europe/London');

$logfile = "C:\\Windows\\temp\\files.txt";

$extensions = array('jpeg', 'jpg', 'png', 'gif');
$dir = 'uploads/';
$count = 0;

if ($_SERVER['REQUEST_METHOD'] == 'POST' and isset($_FILES['files']))
{
  $files = multiple($_FILES);

  //file_put_contents ( $logfile , print_r($files,TRUE), FILE_APPEND | LOCK_EX);

  $fileCount = count($files['files']);

  for ($i = 0; $i < $fileCount; $i++)
  {
	// if file not uploaded then skip it
	if ( is_uploaded_file($files['files'][$i]['tmp_name']) )
	{

		$imageFileType = pathinfo($files['files'][$i]['name'],PATHINFO_EXTENSION);

		// skip suppoted files
		//if( !in_array($imageFileType, $extensions) )
		//  continue;

		$filename = stripslashes($files['files'][$i]['name']);
		$extension = strtolower($imageFileType);
		$file_name=gmdate("Ymd_His",time())."_".rand(0,100000);
		$newname=$dir.$file_name.'.'.$extension;

		  if( copy($files["files"][$i]["tmp_name"], $newname) )
			$count++;
	}
  }

  echo json_encode(array('count' => $count));
  header('Location: /index.php');
  exit;
}


function multiple(array $_files, $top = TRUE)
{
    $files = array();
    foreach($_files as $name=>$file){
        if($top) $sub_name = $file['name'];
        else    $sub_name = $name;

        if(is_array($sub_name)){
            foreach(array_keys($sub_name) as $key){
                $files[$name][$key] = array(
                    'name'     => $file['name'][$key],
                    'type'     => $file['type'][$key],
                    'tmp_name' => $file['tmp_name'][$key],
                    'error'    => $file['error'][$key],
                    'size'     => $file['size'][$key],
                );
                $files[$name] = multiple($files[$name], FALSE);
            }
        }else{
            $files[$name] = $file;
        }
    }
    return $files;
}

?>
Edited by 2inept
Link to comment
Share on other sites

Because I don't know if it's the Android or the PHP that is the problem, I thought that maybe someone would have come across the same issue and be able to say definitvly it's Android and nothing you can do about it or, change the PHP and do XYZ instead.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.