설치된 PHP가 threadsafe 혹은 nonthreadsafe 인지 알아내는법
·
PHP/PHP 문법
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