码迷,mamicode.com
首页 > Web开发 > 详细

简单文件上传

时间:2017-07-27 11:59:18      阅读:224      评论:0      收藏:0      [点我收藏+]

标签:path   cat   type   flash   java   files   rand   swf   app   

/* 检查文件类型 */
if ($_FILES[‘upfile_flash‘][‘type‘] != "application/x-shockwave-flash")
{
$link[] = array(‘text‘ => $_LANG[‘go_back‘], ‘href‘ => ‘javascript:history.back(-1)‘);
sys_msg($_LANG[‘upfile_flash_type‘], 0, $link);
}
/* 生成文件名 */
$urlstr = date(‘Ymd‘);
for ($i = 0; $i < 6; $i++)
{
$urlstr .= chr(mt_rand(97, 122));
}

$source_file = $_FILES[‘upfile_flash‘][‘tmp_name‘];
$target = ROOT_PATH . DATA_DIR . ‘/afficheimg/‘;
$file_name = $urlstr .‘.swf‘;

if (!move_upload_file($source_file, $target.$file_name))
{
$link[] = array(‘text‘ => $_LANG[‘go_back‘], ‘href‘ => ‘javascript:history.back(-1)‘);
sys_msg($_LANG[‘upfile_error‘], 0, $link);
}
else
{
$ad_code = "ad_code = ‘$file_name‘, ";
}

简单文件上传

标签:path   cat   type   flash   java   files   rand   swf   app   

原文地址:http://www.cnblogs.com/csjoz/p/7244067.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!