On Sun, Apr 3, 2016 at 8:27 PM, lj <lj308@xxxxxxxxx> wrote: > Is there any way a PHP script can tell if the PHP it is running under was > built with thread safety (ZTS)? I have some test code that would like to > know. I don't see any constant, function, etc. that can be used to directly > check if ZTS is enabled. The only way I've found is ob_start, > phpinfo(INFO_GENERAL), then check the buffer for "Thread Safety" followed > by Enabled or Disabled. Kind of ugly, and fragile. Is there a better way? > > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > > Try: $ops = get_defined_constants(); var_dump($ops['PHP_ZTS']);