Unix 환경 (Linux, Mac OS) :
/path/to/php-i | grep -i "Thread"
Windows 환경:
php -i | findstr -i "thread"
위의 명령어 타이핑시 아래중에 하나를 리턴하게된다
1. Threadsafe일 경우:
Thread Safety => enabled
2. Nonthreadsafe일 경우:
Thread Safety => disabled
참고자료:
http://stackoverflow.com/questions/5799843/find-if-the-installed-php-is-threadsafe-or-nonthreadsafe
'PHP > PHP 문법' 카테고리의 다른 글
Composer 를 활용해서 스스로가 만든 클래스 자동 로딩하기 (0) | 2017.03.17 |
---|---|
DB접속 (MySQL 기준) (0) | 2016.04.21 |