程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> php模擬socket 多次發送數據的實現方法

php模擬socket 多次發送數據的實現方法

編輯:關於PHP編程

表四:Socket函數
函數名      描述
socket_accept()    接受一個Socket連接
socket_bind()     把socket綁定在一個IP地址和端口上
socket_clear_error()   清除socket的錯誤或者最後的錯誤代碼
socket_close()     關閉一個socket資源
socket_connect()    開始一個socket連接
socket_create_listen()   在指定端口打開一個socket監聽
socket_create_pair()   產生一對沒有區別的socket到一個數組裡
socket_create()    產生一個socket,相當於產生一個socket的數據結構
socket_get_option()    獲取socket選項
socket_getpeername()   獲取遠程類似主機的ip地址
socket_getsockname()   獲取本地socket的ip地址
socket_iovec_add()    添加一個新的向量到一個分散/聚合的數組
socket_iovec_alloc()   這個函數創建一個能夠發送接收讀寫的iovec數據結構
socket_iovec_delete()   刪除一個已經分配的iovec
socket_iovec_fetch()   返回指定的iovec資源的數據
socket_iovec_free()    釋放一個iovec資源
socket_iovec_set()    設置iovec的數據新值
socket_last_error()    獲取當前socket的最後錯誤代碼
socket_listen()     監聽由指定socket的所有連接
socket_read()     讀取指定長度的數據
socket_readv()     讀取從分散/聚合數組過來的數據
socket_recv()     從socket裡結束數據到緩存
socket_recvfrom()    接受數據從指定的socket,如果沒有指定則默認當前socket
socket_recvmsg()    從iovec裡接受消息
socket_select()     多路選擇
socket_send()     這個函數發送數據到已連接的socket
socket_sendmsg()    發送消息到socket
socket_sendto()    發送消息到指定地址的socket
socket_set_block()    在socket裡設置為塊模式
socket_set_nonblock()   socket裡設置為非塊模式
socket_set_option()    設置socket選項
socket_shutdown()    這個函數允許你關閉讀、寫、或者指定的socket
socket_strerror()    返回指定錯誤號的詳細錯誤
socket_write()     寫數據到socket緩存
socket_writev()    寫數據到分散/聚合數組

更多詳細內容請查看:php教程er/30/7cadb3c9195ac7d8ac9104da61a25c6e.htm">http://www.bkjia.com/phper/30/7cadb3c9195ac7d8ac9104da61a25c6e.htm
<?php 
//post.php
function Post($host,$port)
{
//$host="127.0.0.1";
//建立連接
$conn = fsockopen($host,$port);
if (!$conn)
{
die("Con error");
}
//循環發送5次數據
//
for($i = 0;$i<5;$i++)
{
$data="user_name=admin".$i;
WriteData($conn,$host,$data);
echo $i."<br />";
}

fclose($conn);
}

function WriteData($conn,$host,$data)
{
$header = "POST /test.php HTTP/1.1rn";
$header.= "Host : {$host}rn";
$header.= "Content-type: application/x-www-form-urlencodedrn";
$header.= "Content-Length:".strlen($data)."rn";
//Keep-Alive是關鍵
$header.= "Connection: Keep-Alivernrn";
$header.= "{$data}rnrn";

fwrite($conn,$header);

//取結果
//$result = '';
//while(!feof($conn))
//{
// $result .= fgets($conn,128);
//}
//return $result;
}

Post('127.0.0.1',80);

?>
<?php 
//test.php
$fp = fopen('result.txt','a');
$data = $_POST['user_name']." -- ". date('Y-m-d H:i:s')."rn";
fwrite($fp,$data);
fclose($fp);
?>
再模仿post實現用戶登錄
socket.php
<?php
/**
* @author [email protected]
* 模擬socket發送post方式發送數據
* 發送文件為socket.php
* 接收數據為get_socket.php
* @var unknown_type
*/
$flag = 0;
//要post的數據
$argv = array(
‘username’=>’[email protected]’,
‘password’=>’macopad’
);
//構造要 post的字符串
$params = ”;
foreach ($argv as $key=>$value)
{
if ($flag!=0)
{
$params .= ”&”;
$flag = 1;
}
$params.= $key.”=”;
$params.= urlencode($value);
$flag = 1;
}
$length = strlen($params);//post的長度
//創建socket連接
$post = fsockopen($HTTP_SERVER_VARS["SERVER_ADDR"],80,$errno,$errstr,10) or exit($errstr.”—>”.$errno);
//構造post請求的頭
$header = ”POST /guojinyong/test/get_socket.php HTTP/1.1rn”; //制定為 POST的方法提交數據 及要提交到的頁面和協議類型
$header .= ”Host:”.$HTTP_SERVER_VARS["SERVER_ADDR"].”rn”;   //定義主機
$header .= ”Referer:http://”.$HTTP_SERVER_VARS["SERVER_ADDR"].”/guojinyong/test/socket.phprn”; //Referer信息,
$header .= ”Content-Type: application/x-www-form-urlencodedrn”; //說明這個請求為POST
$header .= ”Content-Length: ”.$length.”rn”; //提交的數據長度
$header .= ”Connection: Closernrn”;//關閉連接
$header .= $params.”rn”;//添加post的字符串
//發送post的數據
fputs($post,$header);
//接收get_socket.php返回的數據並打印出來
while(!feof($post))
{
echo fgets($post,1024);//從1024個字節之後開始獲取
}
fclose($post); //關閉socket連接
?>

get_socket.php
<?php
echo ”Set-Cookie:name=Macopad; expires=Fri 12-Nov-99 3:59:59 GMT”;
$userName = ”";
$password = ”";
$userName = $_POST['username'];
$password = $_POST['password'];
echo ”<br>通過socket模擬程序發送數據!<br>”;
echo ”當前服務器是:”.$HTTP_SERVER_VARS["SERVER_ADDR"].”<br>”;
echo ”接受到的用戶名是:” .$userName.”<br>接收到的密碼是:”.$password;
顯示結果
HTTP/1.1 200 OK Date: Wed, 14 Apr 2010 06:49:07 GMT Server: Apache X-Powered-By: PHP/5.2.5 Cache-Control: max-age=0 Expires: Wed, 14 Apr 2010 06:49:07 GMT Vary: Accept-Encoding Content-Length: 189 Connection: close Content-Type: text/html Set-Cookie:name=Macopad; expires=Fri 12-Nov-99 3:59:59 GMT
通過socket模擬程序發送數據!
當前服務器是:http://www.zhutiai.com
接受到的用戶名是:[email protected]
接收到的密碼是:macopad

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved