本文整理匯總了PHP中PHPUnit_Util_PHP::phpBinary方法的典型用法代碼示例。如果您正苦於以下問題:PHP PHPUnit_Util_PHP::phpBinary方法的具體用法?PHP PHPUnit_Util_PHP::phpBinary怎麽用?PHP PHPUnit_Util_PHP::phpBinary使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類PHPUnit_Util_PHP
的用法示例。
在下文中一共展示了PHPUnit_Util_PHP::phpBinary方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: getPhpBinary
/**
* Returns the path to a PHP interpreter.
*
* PHPUnit_Util_PHP::$phpBinary contains the path to the PHP
* interpreter.
*
* When not set, the following assumptions will be made:
*
* 1. When the PHP CLI/CGI binary configured with the PEAR Installer
* (php_bin configuration value) is readable, it will be used.
*
* 2. When PHPUnit is run using the CLI SAPI and the $_SERVER['_']
* variable does not contain the string "PHPUnit", $_SERVER['_']
* is assumed to contain the path to the current PHP interpreter
* and that will be used.
*
* 3. When PHPUnit is run using the CLI SAPI and the $_SERVER['_']
* variable contains the string "PHPUnit", the file that $_SERVER['_']
* points to is assumed to be the PHPUnit TextUI CLI wrapper script
* "phpunit" and the binary set up using #! on that file's first
* line of code is assumed to contain the path to the current PHP
* interpreter and that will be used.
*
* 4. The current PHP interpreter is assumed to be in the $PATH and
* to be invokable through "php".
*
* @return string
*/
public static function getPhpBinary()
{
if (self::$phpBinary === NULL) {
if (is_readable('/usr/local/bin/php')) {
self::$phpBinary = '/usr/local/bin/php';
} else {
if (PHP_SAPI == 'cli' && isset($_SERVER['_']) && strpos($_SERVER['_'], 'phpunit') !== FALSE) {
$file = file($_SERVER['_']);
$tmp = explode(' ', $file[0]);
self::$phpBinary = trim($tmp[1]);
}
}
if (!is_readable(self::$phpBinary)) {
self::$phpBinary = 'php';
} else {
self::$phpBinary = escapeshellcmd(self::$phpBinary);
}
}
return self::$phpBinary;
}