Sending TCP Data with PHP
问题 I've looked in to this a bit but still don't really understand if its possible. I have a small webserver that sits on my private network. I want to create a php script that will connect to a telnet server on the private network and send it text every 30 seconds. Obviously the easy part is the text and timing but connection to a TCP Port 23 and sending a string of text seems harder for some reason. What's the best way to do this? 回答1: Use PHP sockets : <?php while(true){ sleep 30; $fp =