PHP 8.5.0 Alpha 1 available for testing

Voting

: min(seven, five)?
(Example: nine)

The Note You're Voting On

surfchen at gmail dot com
19 years ago
the codes below will provide this function for order versions of PHP.
if (!function_exists('sys_getloadavg')) {
function sys_getloadavg()
{
$loadavg_file = '/proc/loadavg';
if (file_exists($loadavg_file)) {
return explode(chr(32),file_get_contents($loadavg_file));
}
return array(0,0,0);
}
}

<< Back to user notes page

To Top