ARTICLE AD BOX
php.net site write:
NTS builds are for single-threaded use cases, typically PHP running via FastCGI or on the CLI. TS builds support multithreaded SAPIs and are intended for PHP loaded as a web server module. So, if you want to use PHP as FastCGI with IIS, use the Non-Thread Safe (NTS) builds of PHP, or if you want to use the Apache HTTP Server, use the Thread Safe (TS) builds of PHP.
I use the same version of PHP TS both as an Apache module and in FCGI mode.
So far, I haven't encountered any problems, but could this cause any issues?
