예제 #1
0
 /**
  * Returns whether PHP has been compiled with the '--enable-sigchild' option or not.
  *
  * @return bool
  */
 protected function isSigchildEnabled()
 {
     if (null !== self::$sigchild) {
         return self::$sigchild;
     }
     if (!function_exists('phpinfo')) {
         return self::$sigchild = false;
     }
     ob_start();
     phpinfo(INFO_GENERAL);
     return self::$sigchild = false !== strpos(ob_get_clean(), '--enable-sigchild');
 }