$(document).ready(function(){
var status;
var photo_url;
var ext;
$("#photo_file").change(function() {
photo_url = this.value.split("\\").pop();
ext = photo_url.split('.').pop().toLowerCase();
if ( (ext == "jpg" ) || ( ext == "jpeg") || (ext == "png") ) {
$.get('ajax/post.php', {photo_url: photo_url});
} else {
alert("incorrect file type, allowed: jpg, jpeg, png.");
}
});
これは「post.php」です
<?php
$photo_url = $_GET['photo_url'];
$file_path = 'uploaded_photos/' . $photo_url;
$photo_url = 'img/' . $photo_url;
move_uploaded_file($photo_url, $file_path);
?>
写真のファイル名を取得できますが、move_uploaded_file(); を使用して別のフォルダーに移動できません。関数。