posix_setrlimit

(PHP 7, PHP 8)

posix_setrlimitSet system resource limits

Опис

posix_setrlimit(int $resource, int $soft_limit, int $hard_limit): bool

posix_setrlimit() sets the soft and hard limits for a given system resource.

З кожним процесом пов'язані м'які та жорсткі межі його ресурсів. М'яка межа — ефективний розмір ресурсу. Жорстка межа — це значення, до якого процес може збільшити ефективний розмір ресурсу. Непривілейований процес може змінювати свої м'які межі, але жорсткі межі — лише зменшувати.

Параметри

resource

The resource limit constant corresponding to the limit that is being set.

soft_limit

The soft limit, in whatever unit the resource limit requires, or POSIX_RLIMIT_INFINITY.

hard_limit

The hard limit, in whatever unit the resource limit requires, or POSIX_RLIMIT_INFINITY.

Значення, що повертаються

Повертає true у разі успіху або false в разі помилки.

Прогляньте також

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top