(PHP 7)
posix_setrlimit — Set system resource limits
$resource
, int $softlimit
, int $hardlimit
)posix_setrlimit() sets the soft and hard limits for a given system resource.
Chaque ressource a une limite soft et hard d'associées. La limite soft correspond à la valeur que le noyau force pour la ressource correspondante. La limite hard agit comme un plafond de la limite soft. Un processus non privilégié ne peut que définir sa limite soft en une valeur comprise entre 0 et la limite hard, ce qui ne fera qu'abaisser sa limite hard.
resource
The resource limit constant corresponding to the limit that is being set.
softlimit
The soft limit, in whatever unit the resource limit requires, or
POSIX_RLIMIT_INFINITY
.
hardlimit
The hard limit, in whatever unit the resource limit requires, or
POSIX_RLIMIT_INFINITY
.
Cette fonction retourne TRUE
en cas de
succès ou FALSE
si une erreur survient.