将linux运行时间格式成易读格式的php代码
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Lepaskan: 2016-07-25 08:45:49
asal
1249 orang telah melayarinya
-
$exec = shell_exec('uptime');
- $uptime = explode(' up ', $exec);
- $uptime = explode(',', $uptime[1]);
- if (strpos($uptime[0], 'day')) {
- $time = explode(':', $uptime[1]);
- echo('Current system uptime is ' . $uptime[0]. ', ' . $time[0] . ' hours, ' . $time[1] . ' minutes');
- } elseif (strpos($uptime[0], ':')) {
- $time = explode(':', $uptime[0]);
- echo('Current system uptime is ' . $time[0] . ' hours, ' . $time[1] . ' minutes');
- } else {
- $time = explode(' ', $uptime[0]);
- echo('Current system uptime is ' . $time[0] . ' minutes');
- }
-
- ?>
复制代码
|
易读, linux, php
Kenyataan Laman Web ini
Kandungan artikel ini disumbangkan secara sukarela oleh netizen, dan hak cipta adalah milik pengarang asal. Laman web ini tidak memikul tanggungjawab undang-undang yang sepadan. Jika anda menemui sebarang kandungan yang disyaki plagiarisme atau pelanggaran, sila hubungi admin@php.cn
Artikel terbaru oleh pengarang
-
2025-02-26 03:58:14
-
2025-02-26 03:38:10
-
2025-02-26 03:17:10
-
2025-02-26 02:49:09
-
2025-02-26 01:08:13
-
2025-02-26 00:46:10
-
2025-02-25 23:42:08
-
2025-02-25 22:50:13
-
2025-02-25 21:54:11
-
2025-02-25 20:45:11
Isu terkini
-
2025-03-21 13:39:34
-
2025-03-21 13:38:34
-
2025-03-21 13:37:19
-
2025-03-21 13:35:24
-
2025-03-21 13:34:32
Topik-topik yang berkaitan
Lagi>