gpt4 book ai didi

php - 如何制作表格并保存url和html代码?

转载 作者:行者123 更新时间:2023-11-29 23:20:32 26 4
gpt4 key购买 nike

考虑下面给出的 PHP 代码。此代码用于在输入网站的 url 时获取 html 源代码。现在我的问题是我想创建一个数据库并将 url 和 html 代码保存在该表中。在下面的代码中,变量$website$query包含urlhtml代码。那么我该怎么做呢?

 <!DOCTYPE HTML> 
<html>
<head>
<style>
.error {color: #FF0000;}
</style>
</head>
<body>

<?php
$websiteErr = "";
$website = "";

if ($_SERVER["REQUEST_METHOD"] == "POST") {
if (empty($_POST["website"])) {
$website = "";
} else {
$website = test_input($_POST["website"]);
// check if URL address syntax is valid (this regular expression also allows dashes in the URL)
if (!preg_match("/\b(?:(?:https?|ftp):\/\/|www\.)[-a-z0-9+&@#\/%?=~_|!:,.;]*[-a-z0-9+&@#\/%=~_|]/i",$website)) {
$websiteErr = "Invalid URL";
}
}

}

function test_input($data) {
$data = trim($data);
$data = stripslashes($data);
$data = htmlspecialchars($data);
return $data;
}
?>

<form method="post" action="<?php echo htmlspecialchars($_SERVER["PHP_SELF"]);?>">

Website: <input type="text" name="website">
<?php echo $websiteErr;?>
<br><br>

<input type="submit" name="submit" value="Submit">
</form>

<?php
$curl_handle=curl_init();
curl_setopt($curl_handle, CURLOPT_URL,$website);
curl_setopt($curl_handle, CURLOPT_CONNECTTIMEOUT, 2);
curl_setopt($curl_handle, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curl_handle, CURLOPT_USERAGENT, 'Mozilla/5.0');
$query = curl_exec($curl_handle);
curl_close($curl_handle);
$query = htmlentities($query);
echo $query;
?>

</body>
</html>

最佳答案

您可以使用以下函数获取当前页面的 url

function getUrl() {
$url = @( $_SERVER["HTTPS"] != 'on' ) ? 'http://'.$_SERVER["SERVER_NAME"] : 'https://'.$_SERVER["SERVER_NAME"];
$url .= ( $_SERVER["SERVER_PORT"] !== 80 ) ? ":".$_SERVER["SERVER_PORT"] : "";
$url .= $_SERVER["REQUEST_URI"];
return $url;
}

在您的页面

$current_url =  getUrl();
$page_content = file_get_contents($current_url); // to get content of the page
//Or You can
ob_start();
$page_content = ob_get_content();

希望你有想法

关于php - 如何制作表格并保存url和html代码?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27346509/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com