Php 无法在智能手机中获取文件的tmp_名称($_文件)

Php 无法在智能手机中获取文件的tmp_名称($_文件),php,arrays,file,Php,Arrays,File,这是我的html表单: <form method="post" action="filename.php" enctype="multipart/form-data"> <input id="file_upload" name="image[]" value="Upload" multiple="" type="file"> <button type="submit">Submit</button> </form>

这是我的html表单:

<form method="post" action="filename.php" enctype="multipart/form-data">
     <input id="file_upload" name="image[]" value="Upload" multiple="" type="file">
     <button type="submit">Submit</button>
</form>
但在摩托罗拉G4+、G5+、HTC one mini 2等智能手机中,这类手机的性能要低于阵列

Array
(
[name] => Array
    (
        [0] => Sket-printed-shirt.jpg
    )

[type] => Array
    (
        [0] => image/jpeg
    )

[tmp_name] => Array
    (
        [0] => 
    )

[error] => Array
    (
        [0] => 1
    )

[size] => Array
    (
        [0] => 
    )

 )

您没有
tmp\u name
的原因是上载失败,错误代码
1
,这表明文件太大。请参阅:

上传错误INI大小值:1;上载的文件超出了允许的范围 在php.ini中上载\u max\u filesize指令


谢谢你的回答。我已经在php.ini中增加了大小。现在,我无法在摩托罗拉G4 plus、G5 plus的firefox浏览器中上传图像阵列。在Chrome浏览器中工作良好。
Array
(
[name] => Array
    (
        [0] => Sket-printed-shirt.jpg
    )

[type] => Array
    (
        [0] => image/jpeg
    )

[tmp_name] => Array
    (
        [0] => 
    )

[error] => Array
    (
        [0] => 1
    )

[size] => Array
    (
        [0] => 
    )

 )