Home > Backend Development > PHP Tutorial > PHP常量输出

PHP常量输出

WBOY
Release: 2016-06-20 12:33:40
Original
1226 people have browsed it

打印登录时间:

<?php echo date("Y-m-d H:i:s",time()); ?>
Copy after login

打印登录IP地址:

<?php echo $_SERVER['REMOTE_ADDR']; ?>
Copy after login

打印操作系统:

<?php echo PHP_OS; ?>
Copy after login

打印PHP版本信息:

<?php echo PHP_VERSION; ?>
Copy after login

打印MySQL版本信息:

<?php echo mysql_get_server_info(); ?>
Copy after login


Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template