6 lines
110 B
PHP
6 lines
110 B
PHP
<?php
|
|
echo "PHP 服务正常运行!";
|
|
echo "<br>";
|
|
echo "当前时间:" . date('Y-m-d H:i:s');
|
|
phpinfo();
|