Description
bool
socket_shutdown ( resource socket [, int how])
| Aviso |
Esta función
es EXPERIMENTAL. Esto significa que el
comportamiento de esta función, el nombre de esta
función y en definitiva TODO lo documentado sobre esta
función, puede cambiar en una futura version de PHP SIN
AVISO. La advertencia queda hecha, y utilizar esta extensión
queda bajo su propia responsabilidad. |
The socket_shutdown() function allows you to stop
incoming, outgoing or all data (the default) from being sent through the
socket
The value of how can be one of the following:
Tabla 1. possible values for how
| 0 |
Shutdown socket reading
|
| 1 |
Shutdown socket writing
|
| 2 |
Shutdown socket reading and writing
|