update : 2015.11.03
php.shukuma.com

검색:
 
 
Convert a pathname and a project identifier to a System V IPC key

ftok

(PHP 4 >= 4.2.0, PHP 5)

ftokConvert a pathname and a project identifier to a System V IPC key

설명

int ftok ( string $pathname , string $proj )

The function converts the pathname of an existing accessible file and a project identifier into an integer for use with for example shmop_open() and other System V IPC keys.

인수

pathname

Path to an accessible file.

proj

Project identifier. This must be a one character string.

반환값

On success the return value will be the created key value, otherwise -1 is returned.

참고