当前位置 : 主页 > 网络编程 > PHP >

PHP 取 Windows 启动时间及计算已启动秒数

来源:互联网 收集:自由互联 发布时间:2021-06-11
PHP项目开发当中有个需求为需要统计Windows启动时间及计算已启动秒数,分享一段如何实现PHP取Windows启动时间及计算已启动秒数的PHP代码,希望对你有所帮助。 代码如下://代码使用n

PHP项目开发当中有个需求为需要统计Windows启动时间及计算已启动秒数,分享一段如何实现PHP取Windows启动时间及计算已启动秒数的PHP代码,希望对你有所帮助。

代码如下:// 代码使用 nesbot/carbon 包 // get last bootup time exec('WMIC OS GET LastBootUpTime', $output); $bootUpTime = current(explode('+', $output[1])); $bootUpTime = Carbon::createFromFormat('YmdHis.u', $bootUpTime)->timestamp; $bootedSeconds = Carbon::now()->timestamp - $bootUpTime; echo "系统已运行:{$bootedSeconds} 秒";

网友评论