[ php ] glob 이용 패턴으로 파일 include 하기
페이지 정보
작성자 웹지기 댓글 0건 조회 4,977회 작성일 18-09-28 16:52본문
[code]
$library = array_merge(
glob('**/*.class.php')
);
foreach($library as $lib) include_once $lib;
[/code]
PHP프레임워크를 제작하던 중 쓰던 방법
glob 로 패턴으로나온 리스트를 array로 담고 그걸 merge로 합쳐서 include 하는 형태
[code]
array glob ( string $pattern [, int $flags= 0 ] )
[/code]
추천0 비추천0
댓글목록
등록된 댓글이 없습니다.