socket_atmark

(PHP 8 >= 8.3.0, PHP 8)

socket_atmarkDetermines whether socket is at out-of-band mark

说明

socket_atmark(Socket $socket): bool

Determines whether socket is at out-of-band mark.

参数

socket

A Socket instance created with socket_create().

返回值

成功时返回 true, 或者在失败时返回 false

示例

示例 #1 Using socket_atmark() to set the source address

<?php
// Create a new socket
$sock = socket_create(AF_INET, SOCK_STREAM, SOL_TCP);
var_dump(socket_atmark($sock));
// Close
socket_close($sock);
?>

参见