mirror of https://github.com/1Panel-dev/1Panel
appstorecrontabdatabasedockerdocker-composedocker-containerdocker-imagedocker-uifilemanagerlamplnmppanel
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
511 B
25 lines
511 B
<?php |
|
error_reporting(E_ALL); |
|
ini_set('display_errors', 1); |
|
|
|
echo '<h1 style="text-align: center;">欢迎使用 PHP!</h1>'; |
|
echo '<h2>版本信息</h2>'; |
|
|
|
echo '<ul>'; |
|
echo '<li>PHP版本:', PHP_VERSION, '</li>'; |
|
echo '</ul>'; |
|
|
|
echo '<h2>已安装扩展</h2>'; |
|
printExtensions(); |
|
|
|
/** |
|
* 获取已安装扩展列表 |
|
*/ |
|
function printExtensions() |
|
{ |
|
echo '<ol>'; |
|
foreach (get_loaded_extensions() as $i => $name) { |
|
echo "<li>", $name, '=', phpversion($name), '</li>'; |
|
} |
|
echo '</ol>'; |
|
} |