ueditor 편집기를 사용하세요. 기본적으로 첨부 파일은 ueditor/php/upload/에 있습니다. 내 첨부 파일 주소는 웹사이트 루트 디렉터리에 있습니다.
1단계: php /config.php 열기 이미지 디렉토리 수정
return array( //图片目录 'imageSavePath' => array ( '../../../../data/upload' ) );
2단계: 이미지 업로드 후 상대 경로 제거 php/imageUp.php
$info["url"]=str_replace('../../../../', '', $info["url"]); echo "{'url':'" . $info["url"] . "','title':'" . $title . "','original':'" . $info["originalName"] . "','state':'" . $info["state"] . "'}"; exit;
3단계 : ueditor.config.js 열기 이미지 경로 수정
,imagePath:"/"
4단계: 이미지 생성 경로 또는 이미지 이름을 수정하려는 경우
php/Uploader에서 이미지 생성 경로 수정 .class.php
private function getFolder() { $pathStr = $this->config[ "savePath" ]; if ( strrchr( $pathStr , "/" ) != "/" ) { $pathStr .= "/"; } $pathStr .= date( "Ym/d" ); if ( !file_exists( $pathStr ) ) { if ( !mkdir( $pathStr , 0777 , true ) ) { return false; } } return $pathStr; }
파일명을 수정하고, ueditor.all.min.js에서 "fileNameFormat"을 검색한 후 공식문서 안내에 따라 수정해주세요!
UEditor 편집기의 사용자 정의 업로드 이미지나 파일 경로를 수정하는 방법에 대한 더 많은 관련 기사를 보려면 PHP 중국어 웹사이트를 주목하세요!