Остання активність 3 months ago

phpinfo.php Неформатований
1<?php
2
3// Show all information, defaults to INFO_ALL
4phpinfo();
5
6// Show just the module information.
7// phpinfo(8) yields identical results.
8phpinfo(INFO_MODULES);
9
10?>