现在需要用PHP修改操作系统时间,系统目前是centos我的代码<?php//$cmd = "date -s '20181123 08:00:00'";//$cmd = "timedatectl set-time 2018-11-23 08:00:00";$cmd = "reboot";echo date("Y-m-d H:i:s")."<br/>";
$output = shell_exec($cmd);
shell_exec('hwclock --systohc --localtime');
shell_exec('clock –w');echo "<pre>";echo $output;echo "========================"."<br/>";echo date("Y-m-d H:i:s")."<br/>";?>过程中的情况首先我已经确认服务器可以执行shell_exec这个函数。比如执行shell_exec('ls -a');是没有问题的。修改系统时间和系统重启好像都不行。希望知道的大佬们帮忙看看或分析下问题出在了哪里?
- 1 回答
- 0 关注
- 827 浏览
添加回答
举报
0/150
提交
取消