问题 :创建一个http请求。
<?php
function send_post($url,$data){
$data = http_build_query($data);
$options = array(
'http'=>array(
'method'=>'POST',
'header'=>'Content-type:application/x-www-form-urlencoded',
'content'=>$data,
'timeout'=> 60,//s
)
);
$context = stream_context_create($options);
打开文件第一种:
$result = file_get_contents($url,false,$context);
打开文件第二种:
$fp = fopen($url,'r',false,$context);
fpassthru($fp); //函数输出文件指针处的所有剩余数据。该函数将给定的文件指针从当前的位置读取到 EOF,并把结果写到输出缓冲区。
fclose($fp);
}
<?php
$file = fopen("test.txt","r");
//改变文件指针的位置 15
fseek($file,"15");
//把文件指针设定为 0 函数将文件指针的位置倒回文件的开头。
rewind($file);
fclose($file);
?>