php socket(fsockopen)기반 응용 실례 분석

2289 단어 phpsocketfsockopen
fsockopen 함 수 를 사용 할 수 있 습 니 다.우선 php.ini 의 allow 를 켜 야 합 니 다.url_open=on;fsockopen 은 socket 클 라 이언 트 코드 에 대한 패키지 입 니 다.이 함수 에는 socket 이 패키지 되 어 있 습 니 다.create,socket_connect。서버 쪽 코드:server.php

<?php
error_reporting(E_ALL);
set_time_limit(0);
$address = '127.0.0.1';
$port = 10008;
//
if (($sock = socket_create(AF_INET, SOCK_STREAM, SOL_TCP)) === false) {
echo "socket_create() failed:reason:" . socket_strerror(socket_last_error()) . "
";
}
//
if (socket_bind($sock, $address, $port) === false) {
echo "socket_bind() failed :reason:" . socket_strerror(socket_last_error($sock)) . "
";
}
//
if (socket_listen($sock, 5) === false) {
echo "socket_bind() failed :reason:" . socket_strerror(socket_last_error($sock)) . "
";
}
while (true) {
//
if (($msgsock = socket_accept($sock)) === false) {
echo "socket_accepty() failed :reason:".socket_strerror(socket_last_error($sock)) . "
";
break;
}
//welcome
$msg = "1.<font color='red'>server send:welcome</font><br/>";
socket_write($msgsock, $msg, strlen($msg)); //
echo 'read client message
';
$buf = socket_read($msgsock, 8192); //
$talkback = "2.received message:$buf
";
echo $talkback;
if (false === socket_write($msgsock, $talkback, strlen($talkback))) { //
echo "socket_write() failed reason:" . socket_strerror(socket_last_error($sock)) ."
";
} else {
echo 'send success';
}
socket_close($msgsock);
}
socket_close($sock);
클 라 이언 트 코드:fsocket.php

<?php
$fp = fsockopen("127.0.0.1", 10008, &$errno, &$errstr, 10);
if (!$fp) {
echo $errstr . " (". $errno . ")<br>n";
} else {
$in = "HEAD / http/1.1\r
";
$in .= "HOST: localhost \r
";
$in .= "Connection: close\r
\r
";
fputs($fp, $in);
while (!feof($fp)) {
echo fgets($fp, 128);
}
fclose($fp);
}

좋은 웹페이지 즐겨찾기