PHP 8.5.0 Alpha 1 available for testing

Voting

: eight minus zero?
(Example: nine)

The Note You're Voting On

aaron DURP segura DURP gmail DURP com
18 years ago
It appears that you must be connected to the shm segment in order to remove it.

<?php
shm_remove
($shm);
shm_detach($shm);
?>

works, while

<?php
shm_detach
($shm);
shm_remove($shm);
?>

produces "Warning: shm_remove(): The parameter is not a valid shm_identifier ..."

<< Back to user notes page

To Top