好吧,我显然只是运气不好,因为我只能让我的代码运行起来! 我已经工作了一段时间(可能是一两个小时)。 我想要的只是获取访问页面时提供的URL,然后将其保存到文件中(以URL的名称命名)示例:http://integratedmedia.ml/get/?link=google.com将调用google.com.html
<?php
if (isset($_GET['link'])) {
echo "Got the URL {$_GET['link']}";
$Link=$_GET['link'];
//Get the file
$content = file_get_contents("http://www.{$Link}");
//Store in the filesystem.
$fp = fopen("http://integratedmedia.ml/gettmp/{$Link}.html", "w");
fwrite($fp, $content);
fclose($fp);
}else{
// Fallback behavior goes here
echo "error.
Please check to see if you have included a url. Example: http://integratedmedia.ml/get/?link=google.com";
}
?>
这里出了什么问题?没有显示错误,也没有文件。