shm_attach -- Creates or open a shared memory segment
Syntax
int shm_attach ( int key [, int memsize [, int perm]] )
shm_attach() returns an id that that can be
used to access the System V shared memory with the given key, the
first call creates the shared memory segment with memsize
(default: sysvshm.init_mem in the php.ini, otherwise
10000 bytes) and the optional perm-bits perm
(default: 0666).
A second call to shm_attach() for the same
key will return a different shared memory
identifier, but both identifiers access the same underlying
shared memory. Memsize and
perm will be ignored.
shm attach php code on this is provided for your study purpose, it will guide you to know how create and design a website using php. use it to practice and train your self online
Php shm attach syntax tutorial
php tutorial guide and code design are for easy learning and programming. The code practice section provided at the top is for practising of this syntax. Use the code section up to practice your php programming online. Learning php is very easy, all you need is to use the examples on this site and practice them to perfect your skills.