php socket 多次发送,php模拟socket一次连接,多次发送数据的实现代码

//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."
";

}

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);

?>

//test.php

$fp = fopen('result.txt','a');

$data = $_POST['user_name']." -- ". date('Y-m-d H:i:s')."rn";

fwrite($fp,$data);

fclose($fp);

?>

简单的php写入数据库类代码分享

不知道原创要写到随笔里。Allright,第一篇博文。有三个类:1.过滤输入(轻量级的)classinput_filter负责将参数,如$_GET,$_POST这些过滤返回值类型为数组,

php XPath对XML文件查找及修改实现代码

?php/*?xmlversion="1.0"encoding="utf-8"?articleitemtitlename="t1"11/titlecontentcontent1/contentpubdate2009-10-11/pubdate/itemitemtitlename="t2"title2/titlecontentcontent2/contentpubdate2009-11-11/pub

PHP调用Webservice实例代码

它是一个开源软件,是完全采用PHP语言编写的、通过HTTP收发SOAP消息的一系列PHP类,由NuSphereCorporation(http://dietrich.ganx4.com/nusoap/)开发。NuSOAP的一个优势是

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值