Jump to content

Udp Client Socket


JacquesLemaire

Recommended Posts

I haven't actually done socket programming in PHP myself, but the documentation seems to have all the information you need to get started. The first place you want to look is probably at socket_create, unless you have to code the receiver part of things too. You should be able to create an UDP socket connection like this:

 

$socket = socket_create(AF_INET, SOCK_DGRAM, SOL_UDP);

 

I did a quick Google search and found this topic that may serve as inspiration. I didn't look it through, so I cannot vouch for the quality of the article.

 

Anyways, a good starting point would be the first link I posted, so here it is again:

http://www.php.net/manual/en/ref.sockets.php

 

Good luck! :)

Link to comment
https://forums.phpfreaks.com/topic/271120-udp-client-socket/#findComment-1394857
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.