diff options
Diffstat (limited to 'src/benchmarks/httpd/html/index.php')
| -rw-r--r-- | src/benchmarks/httpd/html/index.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/benchmarks/httpd/html/index.php b/src/benchmarks/httpd/html/index.php new file mode 100644 index 0000000..0dde14e --- /dev/null +++ b/src/benchmarks/httpd/html/index.php @@ -0,0 +1,10 @@ +<?php + +// Show all information, defaults to INFO_ALL +phpinfo(); + +// Show just the module information. +// phpinfo(8) yields identical results. +phpinfo(INFO_MODULES); + +?> |
