외부 서버의 파일을 가져오려면 우선 php.ini에서 "allow_url_fopen"이 "on" 되어 있어야 한다. 아니면 힘든 과정을 거쳐야 한다. 1. copy 함수 이용 $url = "http://t1.daumcdn.net/daumtop_chanel/op/20200723055344399.png"; $file_name = basename($url); copy($url, "./upload/".$file_name); 2. file_get_contents, file_put_contents 함수 이용 $url = "http://t1.daumcdn.net/daumtop_chanel/op/20200723055344399.png"; $file_name = basename($url); $file = file_get..