(PHP 4 >= 4.0.4, PHP 5, PHP 7)
Close shared memory block
void shmop_close ( int $shmid )
shmop_close() is used to close a shared memory block.
Parameters:
shmid
The shared memory block identifier created by shmop_open()
Returns:
No value is returned.
Examples:
Closing shared memory block
<?php shmop_close($shm_id); ?>
See also:
Please login to continue.