diff options
| author | Thies C. Arntzen <thies@php.net> | 2000-04-21 16:20:11 +0000 |
|---|---|---|
| committer | Thies C. Arntzen <thies@php.net> | 2000-04-21 16:20:11 +0000 |
| commit | 1651fbff6461fa5ddfc4156119540069a4f0f144 (patch) | |
| tree | 25450dc57929710c7eda9c21c85058e1fead2a45 /ext | |
| parent | 75a00321c30499230cd5a37979e11fe342921299 (diff) | |
| download | php-git-1651fbff6461fa5ddfc4156119540069a4f0f144.tar.gz | |
add VDIR info
Diffstat (limited to 'ext')
| -rw-r--r-- | ext/standard/info.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ext/standard/info.c b/ext/standard/info.c index d8e2eafbb1..9a266c0238 100644 --- a/ext/standard/info.c +++ b/ext/standard/info.c @@ -178,6 +178,12 @@ PHPAPI void php_print_info(int flag) php_info_print_table_row(2, "Server API", sapi_module.name ); } +#ifdef VIRTUAL_DIR + php_info_print_table_row(2, "Virtual Directory Support", "enabled" ); +#else + php_info_print_table_row(2, "Virtual Directory Support", "disabled" ); +#endif + php_info_print_table_row(2, "Configuration File (php.ini) Path", CONFIGURATION_FILE_PATH ); #if ZEND_DEBUG |
