Is my installed PHP threadsafe or nonthreadsafe?

If your trying to identify if your version of PHP is threadsafe or nonthreadsafe the the best way to do this is to open a command line or terminal on your server and try the following commands

  • On Windows : php -i|findstr "Thread"
  • On *nix: php -i|grep Thread

Leave a Reply