欢迎进入Linux社区论坛,与200万技术人员互动交流 >>进入 实现获取内容的php函数。 代码如下: ?php function _open($url, $data, $cookie = null, $method = "GET", $timeout = 60) { $options = array(); $options['']['method'] = $method; $options
欢迎进入linux社区论坛,与200万技术人员互动交流 >>进入
实现获取内容的php函数。
代码如下:
function _open($url, $data, $cookie = null, $method = "GET", $timeout = 60) {
$options = array();
$options['']['method'] = $method;
$options['']['user_agent'] = $_SERVER['_USER_AGENT'];
$options['']['timeout'] = $timeout;
if($method == "POST") :
$length = strlen($data);
//
$options['']['header'] = "Content-type: application/x-www-form-urlencoded\r\n".
"Content-Length: {$length}\r\n".
"P3P: CP=\"CURa ADMa DEVa PSAo PSDo OUR BUS UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR\"\r\n".
雷风影视CMS是一款采用PHP基于THINKPHP3.2.3框架开发,适合各类视频、影视网站的影视内容管理程序,具有良好的用户体验,适合美工人员快速建立站点,您也可以根据您的需要进行应用扩展来达到更加强大功能,您可以在遵循协议的情况下完全免费的使用我们的程序。 雷风影视CMS 3.8.6 更新日志:2018-08-19 1.修改影片添加地址按钮颜色; 2.增加影片采集更新数据选取功能;
234
"cookie: {$cookie}\r\n".
"Connection: close\r\n";
$options['']['content'] = $data;
else:
$options['']['header'] = "Content-type: application/x-www-form-urlencoded\r\n".
"P3P: CP=\"CURa ADMa DEVa PSAo PSDo OUR BUS UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR\"\r\n".
"cookie: {$cookie}\r\n".
"Connection: close\r\n";
endif;
$context = stream_context_create($options);
return file_get_contents($url, 0, $context);
}
echo _open(":///1.php", "username=haowei", "id=5", "POST");

PHP怎么学习?PHP怎么入门?PHP在哪学?PHP怎么学才快?不用担心,这里为大家提供了PHP速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号