/**
* Checks the disk free space
*
* @return bool|string
*/
private function checkDiskFreeSpace() { if (\
function_exists('disk_free_space'
)) { // Prevent Warning: disk_free_space() [function.disk-free-space]: Value too large for defined data type
$freeSpace = @
disk_free_space(__DIR__
);
return $this->
encodeSize($freeSpace);
} return false;
} /**
* Checks the suhosin.get.max_value_length which limits the max get parameter length.
*/
private function checkSuhosinGetMaxValueLength(): int
{ $length =
(int) \
ini_get('suhosin.get.max_value_length'
);