We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca15956 commit d9baa33Copy full SHA for d9baa33
ext/standard/info.c
@@ -798,6 +798,9 @@ PHPAPI ZEND_COLD void php_print_info(int flag)
798
php_info_print_table_start();
799
php_info_print_table_row(2, "System", ZSTR_VAL(php_uname));
800
php_info_print_table_row(2, "Build Date", __DATE__ " " __TIME__);
801
+#ifdef PHP_UNAME
802
+ php_info_print_table_row(2, "Build System", PHP_UNAME);
803
+#endif
804
#ifdef COMPILER
805
php_info_print_table_row(2, "Compiler", COMPILER);
806
#endif
0 commit comments