Warning: file_put_contents(): Only -1 of 53 bytes written, possibly out of free disk space in /var/www/html/index.php on line 3

Warning: Cannot modify header information - headers already sent by (output started at /var/www/html/index.php:3) in /var/www/html/cache.php on line 23

Warning: Cannot modify header information - headers already sent by (output started at /var/www/html/index.php:3) in /var/www/html/cache.php on line 24

Warning: Cannot modify header information - headers already sent by (output started at /var/www/html/index.php:3) in /var/www/html/cache.php on line 25
sleep time_nanosleep Misc. PHP Manual sys_getloadavg (PHP 5 >= 5.1.3) — Gets system load average Description array ( void ) Returns three samples representing the load (the number of processes...
Forum und email

sys_getloadavg

(PHP 5 >= 5.1.3)

sys_getloadavg — Gets system load average

Description

array sys_getloadavg ( void )

Returns three samples representing the average system load (the number of processes in the system run queue) over the last 1, 5 and 15 minutes, respectively.

Return Values

Returns an array with three samples (last 1, 5 and 15 minutes).

Παραδείγματα

Example#1 A sys_getloadavg() example

<?php
$load 
sys_getloadavg();
if (
$load[0] > 80) {
    
header('HTTP/1.1 503 Too busy, try again later');
    die(
'Server too busy. Please try again later.');
}
?>

Notes

Note: Αυτή η συνάρτηση δεν έχει υλοποιηθεί σε Windows συστήματα.