Sending TCP Data with PHP

喜夏-厌秋 提交于 2020-02-23 08:15:42

问题


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 = fsockopen("www.example.com", 23, $errno, $errstr, 30);
    if (!$fp) {
        echo "$errstr ($errno)<br />\n";
    } else {
        fwrite($fp, "The string you want to send");
        while (fgets($fp, 128)) {
            echo fgets($fp, 128); // If you expect an answer
        }
        fclose($fp); // To close the connection
    }
}
?>


来源:https://stackoverflow.com/questions/43475817/sending-tcp-data-with-php

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!