Only variables should be passed by reference in  
php7 error  
php7 로 업레이드 후 에러메세지가 오는 것을  
======================================= 
 $ext = array_pop(explode(".", $_GET['file_name']));  
파일이름에서 확장자 구하기  
  
이런식으로 나누어 하니 메세지가 없어 지네요  
======================================= 
$ext_a=explode(".", $_GET['file_name']);  
$ext = array_pop($ext_a);  
=====================================  
		
	 |