美文网首页
获取文件属性简单的方法

获取文件属性简单的方法

作者: 爱吃橙子的高先森 | 来源:发表于2018-03-29 15:31 被阅读0次

    <?php

    $file_path = 'image/123.jpg';

    $fileInfo = getimagesize($file_path);

    if ($fileInfo !== false){
    $imageType = strtolower(substr(image_type_to_extension($fileInfo[2]), 1));

    $info = array(
        'windth' => $fileInfo[0],
        'height' => $fileInfo[1],
        'type' => $imageType,
        'size' => filesize($file_path),
        'mime' => $fileInfo['mime']
    );
    
    print_r($info);
    

    }

    输出

    Array
    (
    [windth] => 1200
    [height] => 800
    [type] => jpeg
    [size] => 171751
    [mime] => image/jpeg
    )

    image.png

    相关文章

      网友评论

          本文标题:获取文件属性简单的方法

          本文链接:https://www.haomeiwen.com/subject/kqgmcftx.html