gpt4 book ai didi

php - 如何将表单查询插入 $html = file_get_contents_curl();

转载 作者:行者123 更新时间:2023-11-28 03:51:36 25 4
gpt4 key购买 nike

您好,我正在尝试在 file_get_contents_curl()

中使用表单提交数据

我想制作一个表单,您可以在其中提交 url 并在该网站上查找元标记

这是我的代码:

<form method="post" action="index.php">
<input type="text" name="test">
<input type="submit">
</form></center>

<?php
function file_get_contents_curl($url)
{
$ch = curl_init();

curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);

$data = curl_exec($ch);
curl_close($ch);

return $data;
}

$html = file_get_contents_curl($_POST["test"];); // the submitted url should go here
$doc = new DOMDocument();
@$doc->loadHTML($html);
$nodes = $doc->getElementsByTagName('title');

$title = $nodes->item(0)->nodeValue;

$metas = $doc->getElementsByTagName('meta');

for ($i = 0; $i < $metas->length; $i++)
{
$meta = $metas->item($i);
if($meta->getAttribute('name') == 'title')
$description = $meta->getAttribute('content');
if($meta->getAttribute('name') == 'description')
$description = $meta->getAttribute('content');
if($meta->getAttribute('name') == 'keywords')
$keywords = $meta->getAttribute('content');
}


echo '<br/><br/>';
echo "Title: $title". '<br/><br/>';
echo "Description: $description". '<br/><br/>';
echo "Keywords: $keywords". '<br/><br/>';
?>

当我手动输入地址时,一切正常,例如。

$html = file_get_contents_curl('skynews.com');

但这根本不起作用:

$html = file_get_contents_curl($_POST["test"];);

如何调用这个变量?

最佳答案

好吧,我终于明白了!

我必须先添加一个变量

<?php $address = $_POST["test"];?>

$html = file_get_contents_curl($address);

效果很好

关于php - 如何将表单查询插入 $html = file_get_contents_curl();,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30059691/

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