update : 2015.11.03
php.shukuma.com

검색:
 
 
Delete shared memory block

shmop_delete

(PHP 4 >= 4.0.4, PHP 5)

shmop_deleteDelete shared memory block

설명

bool shmop_delete ( int $shmid )

shmop_delete() is used to delete a shared memory block.

인수

shmid

The shared memory block identifier created by shmop_open()

반환값

성공 시 TRUE를, 실패 시 FALSE를 반환합니다.

예제

Example #1 Deleting shared memory block

<?php
shmop_delete
($shm_id);
?>

This example will delete shared memory block identified by $shm_id.