php怎么獲取url內(nèi)容

PHP
小億
103
2023-11-09 21:47:51

要獲取URL的內(nèi)容,可以使用PHP的file_get_contents()函數(shù)。該函數(shù)可以從指定的URL讀取內(nèi)容并將其作為字符串返回。

以下是一個(gè)示例代碼:

$url = 'https://example.com';
$content = file_get_contents($url);

echo $content;

上述代碼將從https://example.com獲取內(nèi)容,并將其作為字符串輸出。

0