mirror of
https://github.com/php/php-src.git
synced 2024-11-27 03:44:07 +08:00
Add php_uname() to output
This commit is contained in:
parent
25704f0753
commit
bbc3c6089b
@ -152,7 +152,7 @@ $php_info = '<?php echo "
|
||||
PHP_SAPI : " . PHP_SAPI . "
|
||||
PHP_VERSION : " . phpversion() . "
|
||||
ZEND_VERSION: " . zend_version() . "
|
||||
PHP_OS : " . PHP_OS . "
|
||||
PHP_OS : " . PHP_OS . " - " . php_uname() . "
|
||||
INI actual : " . realpath(get_cfg_var("cfg_file_path")) . "
|
||||
More .INIs : " . (function_exists(\'php_ini_scanned_files\') ? str_replace("\n","", php_ini_scanned_files()) : "** not determined **"); ?>';
|
||||
save_text($info_file, $php_info);
|
||||
@ -448,7 +448,7 @@ if (!getenv('NO_INTERACTION')) {
|
||||
}
|
||||
|
||||
$failed_tests_data .= "\n" . $sep . 'BUILD ENVIRONMENT' . $sep;
|
||||
$failed_tests_data .= "OS:\n". PHP_OS. "\n\n";
|
||||
$failed_tests_data .= "OS:\n" . PHP_OS . " - " . php_uname() . "\n\n";
|
||||
$ldd = $automake = $autoconf = $libtool = $compiler = 'N/A';
|
||||
|
||||
if (substr(PHP_OS, 0, 3) != "WIN") {
|
||||
|
Loading…
Reference in New Issue
Block a user