如何将表单查询插入 $html = file_get_contents_curl();
how to insert form query into $html = file_get_contents_curl();
您好,我正在尝试使用 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);
效果很好
您好,我正在尝试使用 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);
效果很好