<?php
$str=file_get_contents('http://lianxi.com/a.php');
file_put_contents('c1.html',$str);
<?php
$ch=curl_init();//初始化会话
curl_setopt($ch,CURLOPT_URL,'http://lianxi.com/c.php');//设置选项
curl_setopt($ch,CURLOPT_RETURNTRANSFER,true);//返回文件流,而不是直接输出
$str=curl_exec($ch);//执行会话
file_put_contents('c2.html',$str);
<?php
ob_start();//开启缓冲
require "test.php";//包含文件
$str=ob_get_contents();//获取内容
ob_clean();//关闭缓冲
file_put_contents(c3.html',$str);
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) | 黑马程序员IT技术论坛 X3.2 |