%PDF- %PDF-
Direktori : /data/www_bck/varak.cloud_bck/tracker.varak.cloud/vendor/bugsnag/bugsnag/src/ |
Current File : //data/www_bck/varak.cloud_bck/tracker.varak.cloud/vendor/bugsnag/bugsnag/src/Utils.php |
<?php namespace Bugsnag; class Utils { /** * Checks whether the given function name is available. * * @param string $func the function name * * @return bool */ public static function functionAvailable($func) { $disabled = explode(',', ini_get('disable_functions')); return function_exists($func) && !in_array($func, $disabled); } /** * Gets the current user's identity for build reporting. * * @return string */ public static function getBuilderName() { $builderName = null; if (self::functionAvailable('exec')) { $output = []; $success = 0; exec('whoami', $output, $success); if ($success == 0) { $builderName = $output[0]; } } if (is_null($builderName)) { $builderName = get_current_user(); } return $builderName; } }