php灌水
Posted paulversion
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php灌水相关的知识,希望对你有一定的参考价值。
<?php
$data=array(‘name‘=>‘paul‘,‘mail‘=>‘[email protected]‘)
$data=http_build_query($data);
$opts=array(
‘http‘=>array(
‘method‘=>‘Post‘,
‘header‘=>"Content-type:application/x-www-form-urlencode\r\n",
‘Content-Length‘:".strlen($data)."\r\n",
‘Cookie‘:‘‘,//现在浏览器中提交获取相应的Cookie User_Agent,Referer的值
‘User-Agent‘:‘‘,
‘Referer‘:‘‘,
‘content‘=>$data
)
)
$context=stream_context_create($opts);
$html=file_get_contents(url,false,$context)//url为灌水需要提交的地址
?>
以上是关于php灌水的主要内容,如果未能解决你的问题,请参考以下文章
留言板防灌水功能应该怎么做?怎么防止sql注入?用PHP编写