downloads | documentation | faq | getting help | mailing lists | reporting bugs | php.net sites | links | my php.net 
search for in the  

<stream_socket_recvfromstream_socket_server>
Last updated: Thu, 26 Jun 2008

stream_socket_sendto

(PHP 5)

stream_socket_sendto — Sends a message to a socket, whether it is connected or not

Description

int stream_socket_sendto ( resource $socket , string $data [, int $flags [, string $address ]] )

The function stream_socket_sendto() sends the data specified by data through the socket specified by socket . The address specified when the socket stream was created will be used unless an alternate address is specified in address .

The value of flags can be any combination of the following:
possible values for flags
STREAM_OOB Process OOB (out-of-band) data.

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(), stream_socket_client(), and stream_socket_server().



add a noteadd a note User Contributed Notes
Sends a message to a socket, whether it is connected or not
There are no user contributed notes for this page.




<stream_socket_recvfromstream_socket_server>
Last updated: Thu, 26 Jun 2008
show source | credits | sitemap | contact | advertising | mirror sites
Copyright © 2001-2005 The PHP Group
All rights reserved.
This unofficial mirror is operated at: http://phpbuilder.com/
Last updated: Tue Nov 1 20:20:59 2005 EST
Columns / Articles | Tips / Quickies | News | News Linking and RSS Feeds | Shared Code Library
Mail Archives | Support / Discussion Forums | Get Started! Links | Contribute! | Docs