文章来源:http://sjolzy.cn/PHP-Using-Curl--socket--file-get-contents-POST-data.html
<?php
/**
*Socket版本
* 使用方法:
* $post_string = "app=socket&version=beta";
* request_by_socket('facebook.cn','/restServer.php',$post_string);
*/
function request_by_socket($remote_server,$remote_path,$post_string,$port = 80,$timeout = 30){
$socket = fsockopen($remote_server,$port,$errno,$errstr,$timeout);
if (!$socket) die("$errstr($errno)");
fwrite($socket,"POST $remote_path HTTP/1.0");
fwrite($socket,"User-Agent: Socket Example");
fwrite($socket,"HOST: $remote_server");
fwrite($socket,"Content-type: application/x-www-form-urlencoded");
fwrite($socket,"Content-length: ".strlen($post_string)+8."");
fwrite($socket,"Accept:*/*");
fwrite($socket,"");
fwrite($socket,"mypost=$post_string");
fwrite($socket,"");
$header = "";
while ($str = trim(fgets($socket,4096))) {
$header.=$str;
}
$data = "";
while (!feof($socket)) {
$data .= fgets($socket,4096);
}
return $data;
}
/**
*Curl版本
* 使用方法:
* $post_string = "app=request&version=beta";
* request_by_curl('http://facebook.cn/restServer.php',$post_string);
*/
function request_by_curl($remote_server,$post_string){
$ch = curl_init();
curl_setopt($ch,CURLOPT_URL,$remote_server);
curl_setopt($ch,CURLOPT_POSTFIELDS,'mypost='.$post_string);
curl_setopt($ch,CURLOPT_RETURNTRANSFER,true);
curl_setopt($ch,CURLOPT_USERAGENT,"Jimmy's CURL Example beta");
$data = curl_exec($ch);
curl_close($ch);
return $data;
}
/**
*其它版本
* 使用方法:
* $post_string = "app=request&version=beta";
* request_by_other('http://facebook.cn/restServer.php',$post_string);
*/
function request_by_other($remote_server,$post_string){
$context = array(
'http'=>array(
'method'=>'POST',
'header'=>'Content-type: application/x-www-form-urlencoded'."".
'User-Agent : Jimmy's POST Example beta'."".
'Content-length: '.strlen($post_string)+8,
'content'=>'mypost='.$post_string)
);
$stream_context = stream_context_create($context);
$data = file_get_contents($remote_server,FALSE,$stream_context);
return $data;
}
?>
分享到:
相关推荐
在PHP中,获取远程内容的方法主要有三种:Curl、socket和`file_get_contents`。每种方法都有其独特的特性和适用场景。以下是这三种方法的详细介绍: 1. **Curl (Client URL Library)** Curl 是一个强大的命令行...
总之,当`file_get_contents`遇到获取不到网页内容的问题时,可以考虑使用cURL作为替代,利用其强大的功能和更好的错误处理机制来解决问题。同时,对超时、HTTP认证和其他可能的阻碍进行适当的设置,确保能够顺利地...
总的来说,PHP中发送POST请求的方法多种多样,包括使用 `file_get_contents` 配合流上下文,使用 `cURL` 函数,以及使用底层的socket编程。选择哪种方法取决于项目需求,如性能、灵活性、以及是否需要高级功能。对于...
在进行网络数据抓取或网页内容获取时,`file_get_contents` 是 PHP 内置的一个非常实用的函数,它能够方便地从指定的 URL 或本地文件读取内容。然而,在某些情况下,直接使用 `file_get_contents` 可能无法获取到...
在Web开发中,通常我们使用cURL或者file_get_contents函数发送HTTP请求,但当需要更底层、更灵活的网络通信时,socket提供了一个低级别的接口。通过socket,开发者可以直接与服务器进行数据交换,实现POST数据的发送...
在PHP中,可以使用cURL库或者file_get_contents函数来实现HTTP请求。例如,使用cURL发送GET请求的代码如下: ```php $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, 'http://example.com'); curl_setopt($ch, ...
send_post()函数使用file_get_contents()结合流上下文来发送POST请求,request_by_socket()函数演示了如何使用Socket方式构建并发送POST请求,而request_by_curl()函数则展示了如何使用cURL库发送POST请求。...
PHP POST数据的三种方法 php有三种方法可以post数据,分别为Curl、socket、file_get_contents:
file_get_contents函数可以从用户指定的URL获取数据,例如图片、文件等。但是,如果攻击者提供了恶意的URL,这个函数可能会导致SSRF漏洞。例如,以下代码使用file_get_contents函数从用户指定的URL获取图片,然后将...
file_get_contents函数可以用于GET请求,但配合context选项,也可以实现POST提交: ```php $post_data = array( 'clientname' => 'test08', 'clientpasswd' => 'test08', 'submit' => 'submit', ); // ...
根据给定文件内容,我们可以了解到多种使用PHP语言获取网页内容的方法,其中包括使用file_get_contents函数、fopen函数、curl函数以及fsockopen函数。下面将详细解读这些知识点。 首先,file_get_contents是一个...
以下介绍的三种方法——file_get_contents、curl和socket,都是PHP中实现模拟POST提交的有效手段。 1. **file_get_contents方法**: 这个函数通常用于读取远程文件,但通过设置HTTP选项,也可以实现POST提交。在...
4. **file_get_contents与HTTP POST**:file_get_contents也可以用POST方式发送数据。如下: ```php $url = 'http://www.shouxufei.net'; $data = array('foo' => 'bar'); $data = http_build_query($data); $...
另外,file_get_contents函数适合简单的GET请求,而fsockopen可以创建低级别socket连接,适用于更底层的网络通信。 【PHP与txt文件操作】 在PHP中,可以使用file_put_contents函数将采集到的数据写入txt文件,而...
要通过file_get_contents() 发送POST请求,需要设置流上下文选项: ```php <?php $data = array('foo' => 'bar'); $data = http_build_query($data); $opts = array( 'http' => array( 'method' => 'POST', '...
在PHP中,我们可以利用多种方法实现IP交互,如使用cURL库、file_get_contents函数或fsockopen函数等。 1. **cURL库**: cURL是PHP的一个扩展,允许开发者发送HTTP、FTP、SMTP等多种协议的请求。通过设置各种选项,如...