upload.php
复制代码代码如下:
if(isset($_FILES["myfile"]))
{
$ret = array();
$uploadDir = 'images'。 DIRECTORY_SEPARATOR.date("Ymd").DIRECTORY_SEPARATOR;
$dir = dirname(__FILE__).DIRECTORY_SEPARATOR.$uploadDir;
file_exists($dir) || (mkdir($dir,0777,true) && chmod($dir,0777));
if(!is_array($_FILES["myfile"]["name"])) //単一ファイル
{
$fileName = time().uniqid().'.'.pathinfo($_FILES["myfile"]["name"])['extension'];
move_uploaded_file($_FILES["myfile"]["tmp_name"],$ dir.$fileName);
$ret['file'] = DIRECTORY_SEPARATOR.$uploadDir.$fileName;
}
echo json_encode($ret);
}
?>
index.html
复制代格代格如下:
Html5 Ajax上传文件 <メタ文字セット= 「utf-8」>
浏览...
<入力タイプ="file" name="file" class="file" id="file" size="28" onchange="document.getElementById('textfield').value=this.value" />
上传
ボディ>
http://www.bkjia.com/PHPjc/779158.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/779158.html技術記事 Upload.php 次のようにコードをコピーします。 ?php if(isset($_FILES["myfile"])) { $ret = array(); $uploadDir = 'images'.DIRECTORY_SEPARATOR.date("Ymd").DIRECTORY_SEPARATOR; $ dir = ディレクトリ名(...