当前位置:首页 > 编程技术 > 正文

php如何获得网页源码

php如何获得网页源码

在PHP中,获取网页源码有多种方法,以下是一些常用的方法: 1. 使用 `file_get_contents` 函数```php$url = 'http://examp...

在PHP中,获取网页源码有多种方法,以下是一些常用的方法:

1. 使用 `file_get_contents` 函数

```php

$url = 'http://example.com';

$html = file_get_contents($url);

echo $html;

```

2. 使用 `cURL` 函数

```php

$url = 'http://example.com';

$ch = curl_init();

curl_setopt($ch, CURLOPT_URL, $url);

curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);

$html = curl_exec($ch);

curl_close($ch);

echo $html;

```

3. 使用 `fopen` 和 `feof` 函数

```php

$url = 'http://example.com';

$fp = fopen($url, 'r');

$html = '';

while (!feof($fp)) {

$html .= fread($fp, 1024);

最新文章