그냥 개발자 블로그

고도몰 Bundle 내에 파일 보는 방법 본문

IT소식&팁

고도몰 Bundle 내에 파일 보는 방법

마음이파파 2023. 5. 19. 21:05

1. 원하는 파일 찾기

$filePath = "/www/[아이디]_godomall_com/../system/src/Bundle/";
if(file_existe($filePath)){
	echo '찾았음';
    
    $fileList = scandir($filePath);
    foreach($fileList as $file){
    	gd_debug($file)
    }
    
}else{
	echo '찾을수 없음';
}

 

2. 파일을 찾았다면 파일 읽기

$fileContent = file_get_contents($filePath.'/[찾는파일명]');
gd_Debug($fileContent);