2014-06-18 04:11:11 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
class Misc
|
|
|
|
{
|
2015-01-16 12:14:07 -05:00
|
|
|
/**
|
|
|
|
* Returns human size
|
|
|
|
*/
|
2014-06-18 04:11:11 -04:00
|
|
|
public static function getSize($filesize, $precision = 2)
|
|
|
|
{
|
|
|
|
$units = array('', 'K', 'M', 'G', 'T', 'P', 'E', 'Z', 'Y');
|
2015-01-16 12:14:07 -05:00
|
|
|
|
2014-06-18 04:11:11 -04:00
|
|
|
foreach ($units as $idUnit => $unit)
|
|
|
|
{
|
|
|
|
if ($filesize > 1024)
|
2015-01-16 12:14:07 -05:00
|
|
|
$filesize /= 1024;
|
2014-06-18 04:11:11 -04:00
|
|
|
else
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2014-11-11 09:28:05 -05:00
|
|
|
return round($filesize, $precision).' '.$units[$idUnit].'B';
|
2014-06-18 04:11:11 -04:00
|
|
|
}
|
2015-01-16 12:14:07 -05:00
|
|
|
|
2014-06-18 04:11:11 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns hostname
|
|
|
|
*/
|
|
|
|
public static function getHostname()
|
|
|
|
{
|
|
|
|
return php_uname('n');
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-01-16 12:14:07 -05:00
|
|
|
/**
|
|
|
|
* Returns CPU cores number
|
|
|
|
*/
|
|
|
|
public static function getCpuCoresNumber()
|
|
|
|
{
|
|
|
|
if (!($num_cores = shell_exec('/bin/grep -c ^processor /proc/cpuinfo')))
|
|
|
|
{
|
|
|
|
if (!($num_cores = trim(shell_exec('/usr/bin/nproc'))))
|
|
|
|
{
|
|
|
|
$num_cores = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((int)$num_cores <= 0)
|
|
|
|
$num_cores = 1;
|
|
|
|
|
|
|
|
return (int)$num_cores;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-06-18 04:11:11 -04:00
|
|
|
/**
|
|
|
|
* Returns server IP
|
|
|
|
*/
|
|
|
|
public static function getLanIp()
|
|
|
|
{
|
|
|
|
return $_SERVER['SERVER_ADDR'];
|
|
|
|
}
|
|
|
|
|
2014-12-19 12:06:37 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a command that exists in the system among $cmds
|
|
|
|
*/
|
|
|
|
public static function whichCommand($cmds, $args = '', $returnWithArgs = true)
|
|
|
|
{
|
|
|
|
$return = '';
|
|
|
|
|
|
|
|
foreach ($cmds as $cmd)
|
|
|
|
{
|
|
|
|
if (trim(shell_exec($cmd.$args)) != '')
|
|
|
|
{
|
|
|
|
$return = $cmd;
|
|
|
|
|
|
|
|
if ($returnWithArgs)
|
|
|
|
$return .= $args;
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $return;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-06-18 04:11:11 -04:00
|
|
|
/**
|
|
|
|
* Allows to pluralize a word based on a number
|
|
|
|
* Ex : echo 'mot'.Misc::pluralize(5); ==> prints mots
|
|
|
|
* Ex : echo 'cheva'.Misc::pluralize(5, 'ux', 'l'); ==> prints chevaux
|
|
|
|
* Ex : echo 'cheva'.Misc::pluralize(1, 'ux', 'l'); ==> prints cheval
|
|
|
|
*
|
|
|
|
* @param int $nb
|
|
|
|
* @param string $plural
|
|
|
|
* @param string $singular
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public static function pluralize($nb, $plural = 's', $singular = '')
|
|
|
|
{
|
|
|
|
return $nb > 1 ? $plural : $singular;
|
|
|
|
}
|
|
|
|
}
|