Forum und email

pcntl_getpriority

(PHP 5)

pcntl_getpriority — Get the priority of any process

설명

int pcntl_getpriority ([ int $pid [, int $process_identifier ]] )

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

매개변수

pid

If not specified, the pid of the current process is used.

process_identifier

One of PRIO_PGRP, PRIO_USER or PRIO_PROCESS.

반환값

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

Warning

이 함수는 Boolean FALSE를 반환하지만, 0이나 "" 등의 FALSE로 취급할 수 있는 Boolean이 아닌 값을 반환할 수도 있습니다. Booleans 섹션에서 자세한 정보를 얻을 수 있습니다. 이 함수의 반환값을 테스트하기 위해서 === 연산자를 이용하십시오.