stream_socket_sendto
(PHP 5, PHP 7)
stream_socket_sendto — Sends a message to a socket, whether it is connected or not
Description
$socket
, string $data
[, int $flags
= 0
[, string $address
]] ) : int
Sends the specified data
through the
socket
.
Parameters
-
socket
-
The socket to send
data
to. -
data
-
The data to be sent.
-
flags
-
The value of
flags
can be any combination of the following:possible values for flags
STREAM_OOB
Process OOB (out-of-band) data. -
address
-
The address specified when the socket stream was created will be used unless an alternate address is specified in
address
.If specified, it must be in dotted quad (or [ipv6]) format.
Examples
Example #1 stream_socket_sendto() Example
<?php
/* Open a socket to port 1234 on localhost */
$socket = stream_socket_client('tcp://127.0.0.1:1234');
/* Send ordinary data via ordinary channels. */
fwrite($socket, "Normal data transmit.");
/* Send more data out of band. */
stream_socket_sendto($socket, "Out of Band data.", STREAM_OOB);
/* Close it up */
fclose($socket);
?>
See Also
- stream_socket_recvfrom() - Receives data from a socket, connected or not
- stream_socket_client() - Open Internet or Unix domain socket connection
- stream_socket_server() - Create an Internet or Unix domain server socket
English translation
You have asked to visit this site in English. For now, only the interface is translated, but not all the content yet.If you want to help me in translations, your contribution is welcome. All you need to do is register on the site, and send me a message asking me to add you to the group of translators, which will give you the opportunity to translate the pages you want. A link at the bottom of each translated page indicates that you are the translator, and has a link to your profile.
Thank you in advance.
Document created the 30/01/2003, last modified the 26/10/2018
Source of the printed document:https://www.gaudry.be/en/php-rf-stream-socket-sendto.html
The infobrol is a personal site whose content is my sole responsibility. The text is available under CreativeCommons license (BY-NC-SA). More info on the terms of use and the author.
References
These references and links indicate documents consulted during the writing of this page, or which may provide additional information, but the authors of these sources can not be held responsible for the content of this page.
The author This site is solely responsible for the way in which the various concepts, and the freedoms that are taken with the reference works, are presented here. Remember that you must cross multiple source information to reduce the risk of errors.