要使用PHP将网页变为变量,您可以使用PHP的cURL库或者file_get_contents()函数。以下是两种方法的示例:
<?php
$url = "https://www.example.com";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$content = curl_exec($ch);
curl_close($ch);
echo $content;
?>
<?php
$url = "https://www.example.com";
$content = file_get_contents($url);
echo $content;
?>
这两种方法都可以将网页内容读取到变量中,您可以根据自己的需求选择合适的方法。
领取专属 10元无门槛券
手把手带您无忧上云