$imgdir = './images/goods/';
//디렉토리 확인
if(!file_exists($imgdir)){
echo "디렉토리 생성";
@mkdir($imgdir, 0777, true);
}
https://www.delftstack.com/ko/howto/php/how-to-create-a-folder-if-it-does-not-exist-in-php/
$imgdir = './images/goods/';
//디렉토리 확인
if(!file_exists($imgdir)){
echo "디렉토리 생성";
@mkdir($imgdir, 0777, true);
}
https://www.delftstack.com/ko/howto/php/how-to-create-a-folder-if-it-does-not-exist-in-php/