php 파일 경로이동 썸네일형 리스트형 php 파일 업로드시 파일 디렉토리 변경 php 파일 업로드시 파일 경로 이동. $title_img = $_FILES['img_file']['name']; // 파일 이름 얻어오기 // Create target dir$root_path = $_SERVER["DOCUMENT_ROOT"]; // . 경로 알아내기$targetDir = $root_path . "/files/attach/images/228/". $last_num . "/"; // 지정할 경로 if (!file_exists($targetDir)) { . // 디렉토리 생성 @mkdir($targetDir);} $uploadFile = $targetDir . basename($_FILES['img_file']['name']); // 변수에 파일경로 및 파일 이름 저장// move_uplo.. 더보기 이전 1 다음