我希望使用php将一些网站源代码导入网页。
这是我的html代码。我想添加php代码来检查网站源代码。
<html>
<head>
<meta charset="utf-8">
</head>
<body>
<center>
<form method="post">
<h1>Website source code</h1>
<input type="text" name="url" placeholder="Website Url"><input type="submit" value=">>">
</form>
</center>
</body>
</html>
这是我导出html源代码的php代码。
[[-- <?php $all_lines = file('example.com/');
foreach ($all_lines as $line_num => $line) {
echo "Code.-{$line_num}: " . htmlspecialchars($line) . "\n";
} ?> --]] –
答案 0 :(得分:0)
如果您想获取URL的HTML源代码,可以使用cURL:
<?php
$ch = curl_init("http://www.example.com");
$html= curl_exec($ch);
curl_close($ch);
echo htmlspecialchars($html);
?>
此处有更多信息cUrl - getting the html response body,此处php: Get html source code with cURL