简单文件上传
Posted csjoz11
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了简单文件上传相关的知识,希望对你有一定的参考价值。
/* 检查文件类型 */
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‘, ";
}
以上是关于简单文件上传的主要内容,如果未能解决你的问题,请参考以下文章