PHP 8.3.4 Released!

shmop_close

(PHP 4 >= 4.0.4, PHP 5, PHP 7, PHP 8)

shmop_closeCerrar un segmento de memoria compartida

Descripción

shmop_close(resource $shmid): void

shmop_close() se utiliza para cerrar un segmento de memoria compartida.

Parámetros

shmid

El recurso del segmento de memoria compartida creado por shmop_open()

Valores devueltos

No devuelve ningún valor.

Historial de cambios

Versión Descripción
7.0.0 El tipo de shmid ha sido cambiado de int a resource.

Ejemplos

Ejemplo #1 Cerrando segmento de memoria compartida

<?php
shmop_close
($shm_id);
?>

Este ejemplo cierra un segmento de memoria compartida identificado por $shm_id.

Ver también

  • shmop_open() - Crea o abre un segmento de memoria compartida

add a note

User Contributed Notes 2 notes

up
3
slavapl at mailandnews dot com
22 years ago
shmop_close doesn't delete the memory segment, it just detaches from it.

If you have created the block and need to delete it you must call shmop_delete **BEFORE** calling shmop_close (for reasons outlined in shmop_delete help page notes).
up
1
shortboi
2 years ago
As explained on this page, PHP 8.0.0 expects a Shmop instance instead of a resource. According to bug #81098 this change means that the Shmop closes itself when the script completes so there is no need to close it with shmop_close.

Using function_exists('shmop_close') will return true but calling shmop_close will throw a deprecation error.

The documentation explains the change in 8.0.0 expects the expected argument changed without mentioning it'll just throw a deprecation error.
To Top