Dutch PHP Conference 2025 - Call For Papers

fpm_get_status

(PHP 7 >= 7.3, PHP 8)

fpm_get_statusReturns the current FPM pool status

Опис

fpm_get_status(): array|false

This function returns the full current FPM pool status as an associative array. It always returns the full status, including per-process status information. See the FPM status page guide for further details.

Note that this function will only be defined if FPM is being used to serve the script.

Параметри

У цієї функції немає параметрів.

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

Associative array containing the full FPM pool status, або false в разі помилки.

add a note

User Contributed Notes 1 note

up
0
Ehsan Chavoshi
1 year ago
Use this script to get a single page for fpm status:
https://gist.github.com/EhsanCh/97187902e905a308ce434bda6730073c
To Top