if(preg_match('/Edge/i',$_SERVER['HTTP_USER_AGENT'])){
$filename = rawurlencode($row['ORIGINAL_NAME']);
}else{
$filename = iconv("UTF-8", "EUC-KR", $row['ORIGINAL_NAME']);
}
엣지에서는 rawurlencode 를 사용해줘야한다.
'Programming > php' 카테고리의 다른 글
PHP 짧은 태그 허용하기 (0) | 2018.01.23 |
---|---|
[php] 디렉토리의 제어 (0) | 2017.09.26 |
[php]파일 (0) | 2017.09.26 |
[php] 라이브러리와 확장기능 (0) | 2017.09.26 |
[php] include 와 namespace (0) | 2017.09.26 |