update : 2015.11.03
php.shukuma.com검색:
|
shmop_open(PHP 4 >= 4.0.4, PHP 5) shmop_open — Create or open shared memory block 설명
int shmop_open
( int
$key
, string $flags
, int $mode
, int $size
)shmop_open() can create or open a shared memory block. 인수
반환값
On success shmop_open() will return an id that you can
use to access the shared memory segment you've created. 예제
Example #1 Create a new shared memory block
<?php This example opened a shared memory block with a system id returned by ftok(). |