(PHP 8 >= 8.3.0, PHP 8)
socket_atmark — Détermine si le socket est à la marque hors bande
Exemple #1 Utilisation de socket_atmark() pour définir l'adresse source
<?php
// Créer un nouveau socket
$sock = socket_create(AF_INET, SOCK_STREAM, SOL_TCP);
var_dump(socket_atmark($sock));
// Ferme
socket_close($sock);
?>