使用php从网站上删除特定数据而不使用任何工具,我已经尝试过这段代码,但这还不够 -
<?php
$url = 'http://www.google.com';
$output = file_get_contents($url);
echo $output;
?>
答案 0 :(得分:3)
你可以在php中使用curl
<?
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'http://www.example.com');
curl_setopt($ch, CURLOPT_HEADER, 1);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$data = curl_exec();
curl_close($ch);
?>
其中$ data包含给定网址的html