array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'it', ), 'this' => array ( 0 => 'function.pcntl-getpriority.php', 1 => 'pcntl_getpriority', 2 => 'Get the priority of any process', ), 'up' => array ( 0 => 'ref.pcntl.php', 1 => 'PCNTL Funzioni', ), 'prev' => array ( 0 => 'function.pcntl-getcpuaffinity.php', 1 => 'pcntl_getcpuaffinity', ), 'next' => array ( 0 => 'function.pcntl-rfork.php', 1 => 'pcntl_rfork', ), 'alternatives' => array ( ), 'source' => array ( 'lang' => 'en', 'path' => 'reference/pcntl/functions/pcntl-getpriority.xml', ), 'history' => array ( ), ); $setup["toc"] = $TOC; $setup["toc_deprecated"] = $TOC_DEPRECATED; $setup["parents"] = $PARENTS; manual_setup($setup); contributors($setup); ?>

pcntl_getpriority

(PHP 5, PHP 7, PHP 8)

pcntl_getpriorityGet the priority of any process

Descrizione

pcntl_getpriority(?int $process_id = null, int $mode = PRIO_PROCESS): int|false

pcntl_getpriority() gets the priority of process_id. Because priority levels can differ between system types and kernel versions, please see your system's getpriority(2) man page for specific details.

Elenco dei parametri

process_id

If null, the process id of the current process is used.

mode

One of PRIO_PGRP, PRIO_USER, PRIO_PROCESS, PRIO_DARWIN_BG or PRIO_DARWIN_THREAD.

Valori restituiti

pcntl_getpriority() returns the priority of the process or false on error. A lower numerical value causes more favorable scheduling.

Avviso

Questa funzione può restituire il Booleano false, ma può anche restituire un valore non-Booleano valutato come false. Fare riferimento alla sezione Booleans per maggiori informazioni. Usare l'operatore === per controllare il valore restituito da questa funzione.

Log delle modifiche

Versione Descrizione
8.0.0 process_id is nullable now.

Vedere anche: