Query: shmop_read
OS: php
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
SHMOP_READ(3) 1 SHMOP_READ(3) shmop_read - Read data from shared memory blockSYNOPSISstring shmop_read (int $shmid, int $start, int $count)DESCRIPTIONshmop_read(3) will read a string from shared memory block.PARAMETERSo $shmid - The shared memory block identifier created by shmop_open(3) o $start - Offset from which to start reading o $count - The number of bytes to readRETURN VALUESReturns the data or FALSE on failure.EXAMPLESExample #1 Reading shared memory block <?php $shm_data = shmop_read($shm_id, 0, 50); ?> This example will read 50 bytes from shared memory block and place the data inside $shm_data.SEE ALSOshmop_write(3). PHP Documentation Group SHMOP_READ(3)
Related Man Pages |
---|
shmop(2) - ultrix |
shmdt(2) - opendarwin |
shmctl(2) - hpux |
shmat(2) - osx |
shmdt(2) - osx |