<?php
#使用反撇号,暗示作为命令来执行
$result=`date`;
echo "<p>the server timestamp is: $result</p>";
echo "<hr color=red>";
#使用shell_exec()
$result1=shell_exec("date");
echo "<p>the server timestamp is: $result1</p>";
?>
输出结果如下:
the server timestamp is: 当前日期: 2009/06/30 二
输入新日期: (年月日)
the server timestamp is: 当前日期: 2009/06/30 二
输入新日期: (年月日)
posted on 2009-06-30 15:50
期待明天 阅读(688)
评论(0) 编辑 收藏 所属分类:
PHP