XCVI. Shared Memory Functions
Introduction
Shmop is an easy to use set of functions that allows PHP to read, write, create and delete UNIX shared memory segments. Note that versions of Windows previous to Windows 2000 do not support shared memory.
Note: In PHP 4.0.3, these functions were prefixed by shm rather than shmop.
Installation
To use shmop you will need to compile PHP with the --enable-shmop parameter in your configure line.
Examples
- Table of Contents
- shmop_close -- Close shared memory block
- shmop_delete -- Delete shared memory block
- shmop_open -- Create or open shared memory block
- shmop_read -- Read data from shared memory block
- shmop_size -- Get size of shared memory block
- shmop_write -- Write data into shared memory block