'ini_set'에 해당되는 글 1건

  1. 2007/09/01 php 인클루딩 환경변수 설정

php 인클루딩 환경변수 설정

개발/PHP 2007/09/01 22:05 posted by zekill
코드내에서 환경설정이 가능하더라...

// 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();
2007/09/01 22:05 2007/09/01 22:05