首页 > 其他 > 详细

获取文件名的基本信息

时间:2020-03-11 23:23:15      阅读:88      评论:0      收藏:0      [点我收藏+]
<?php
//想要获取a.jpg这个文件名的基本信息
//
require ‘10_return.php‘;
require ‘library/strinf.php‘;
print_r(getFileInfo(‘global.css‘));
echo ‘<hr>‘;
echo uuid();
echo random(0);
 
//////////////////////////////////////////
 
<?php
$files = [
    ‘name‘ => [
        0 => ‘1.gif‘,
        1 => ‘1.gif‘,
        2 => ‘1.gif‘,
    ],
    ‘type‘ => [
        0 => ‘image/gif‘,
        1 => ‘image/gif‘,
        2 => ‘image/gif‘,
    ],
];
$files = [
    [‘name‘ => ‘1.gif‘,‘type‘ => ‘image/gif‘],
    [‘name‘ => ‘1.gif‘,‘type‘ => ‘image/gif‘],
    [‘name‘ => ‘1.gif‘,‘type‘ => ‘image/gif‘],
];

获取文件名的基本信息

原文:https://www.cnblogs.com/lujieting/p/12466362.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!