//下载文件 header('Content-Type:application/octet-stream'); if(preg_match('/MSIE/',$_SERVER['HTTP_USER_AGENT'])){ header('Content-Disposition:attachment;filename="'.str_replace("+","20%",urlencode($newFileName)).'"'); }else if(preg_match('/Firefox/',$_SERVER['HTTP_USER_AGENT'])){ header('Content-Disposition:attachment;filename=*"utf8'.$newFileName.'"'); }else{ header('Content-Disposition:attachment;filename="'.$newFileName.'"'); }
위 내용은 PHP 튜토리얼에 관심이 있는 친구들에게 도움이 되기를 바랍니다.