zoukankan      html  css  js  c++  java
  • 单个文件上传与多个文件上传

    <?php
    //单个文件上传时的数组结构如下:
    $array = [
        'file' => [
            'name' => '',
            'size' => '',
            'error' => '',
            'type' => '',
            'tmp_name' => '',
        ],
    ];
    foreach ($array as $value){
        print_r($value);
    }


    $array = [
        'file' => [
            'name' => [
                0 => 1
                1 => 1
                2 => 1,
            ],
            'size' => [
                0 => 1
                1 => 1
                2 => 1,
            ],
            'error' => [
                0 => 1
                1 => 1
                2 => 1,
            ],
            'type' => [
                0 => 1
                1 => 1
                2 => 1,
            ],
            'tmp_name' => [
                0 => 1
                1 => 1
                2 => 1,
            ],
        ]
        ];
        foreach ($array as $value){
            print_r($value);
        }    
  • 相关阅读:
    Kubernetes DNS服务配置案例
    Dockerfile常用指令
    Docker常用命令
    Kubernetes常用命令
    阿里云ECS安装Kubernetes问题收集与解答
    712. Minimum ASCII Delete Sum for Two Strings
    845. Longest Mountain in Array
    815. Bus Routes
    204. Count Primes
    190. Reverse Bits
  • 原文地址:https://www.cnblogs.com/lujieting/p/12466349.html
Copyright © 2011-2022 走看看