php8.5
Home/ Manual/ posix / functions/ posix_sysconf

posix_sysconf

PHP function Edit on GitHub ✎

(PHP 8 >= 8.3.0)

Returns system runtime information

Description

posix_sysconf(int $conf_id): int

Returns system runtime information.

Parameters

conf_id

Identifier of the variable with the following constants POSIX_SC_ARG_MAX, POSIX_SC_PAGESIZE, POSIX_SC_NPROCESSORS_CONF, POSIX_SC_NPROCESSORS_ONLN, POSIX_SC_CHILD_MAX, POSIX_SC_CLK_TCK

Return Values

Returns the numeric value related to conf_id

Examples

posix_sysconf() example

Returns the number of active cpus.

php
<?php
echo posix_sysconf(POSIX_SC_NPROCESSORS_ONLN);
?>

The above example will output:

output
2

Source: reference/posix/functions/posix-sysconf.xml · from the official PHP manual (php/doc-en)