php 인클루딩 환경변수 설정

2007/09/01 22:05

코드내에서 환경설정이 가능하더라...

// Works in all PHP versions
ini_set('include_path', '/inc');
// Works in all PHP versions
echo ini_get('include_path');

// Works as of PHP 4.3.0
set_include_path('지정할경로');
// Works as of PHP 4.3.0
echo get_include_path();

Tags

get_include_path, include, ini_get, ini_set, php, set_include_path