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} 秒";