2012-04-10 96 views
0

我想获取在文本区域输入的URL的元标记,这是什么问题?PHP获取元标记,URL中的数组= =不工作

此外,我将如何把元描述来自描述的URL?

<form method="get"> 
<textarea name="TAData"> 
</textarea> 
<input type="submit" value="submit"/> 
</form> 

<div id="checkboxes"> 
<input type="checkbox" name="vehicle" value="PR" /> Show me the PR<br /> 
<input type="checkbox" name="vehicle" value="KW Tag" /> Show me the KW tag<br /> 
<input type="checkbox" name="vehicle" value="Title Tag" /> Show me the Title tag<br /> 
</div> 
<div id="checkboxes"> 
<input type="checkbox" name="vehicle" value="1stH1" /> Show me the 1st H1<br /> 
<input type="checkbox" name="vehicle" value="2ndH1" /> Show me the 2nd H1 tag<br /> 
<input type="checkbox" name="vehicle" value="SeedKW" /> Show me Seed KW's<br /> 
</div> 

<div id="nofloat"></div> 

<?php 

//make the array 
$TAarray = explode("\n", strip_tags($_POST['TAData'])); 

var_dump($TAarray); 

//loop through the array 
foreach ($TAarray as $line) { 


    $line = htmlspecialchars(trim($line)); 
}  

    foreach ($TAarray as $url) { 

      // get the meta data for each url 
      $tags = get_meta_tags($url); 

unset($tags["content-type"]); 
unset($tags["page-type"]); 
unset($tags["page-topic"]); 
unset($tags["audience"]); 

       echo '<tr>'; 
       foreach ($tags['description'] as $meta)   
      { 
         echo '<td>' . $meta . '</td>'; 
       } 
       echo '</tr>'; 
     } 
?> 

此外,有没有办法只包括元描述?

+2

你检查'$ _ POST [ 'TAData']'但你的表单方法是'get'。应该是'post'。 – 2012-04-10 16:20:13

+4

即使你是PHP的新手,你可能知道的不仅仅是“不工作”。请在你的问题上付出一些努力。 – 2012-04-10 16:21:01

+0

感谢您的意见,我真的不知道任何其他事情,然后不工作,它显示没有错误... – RuFFCuT 2012-04-10 16:24:34

回答

1

1)您的表单被声明为GET,但您正在读取$ _POST字段中的值。

2)如果你想只提取“说明” meta值,你不需要做了标记的迭代,你可以使用:

$description = $tags["description"] 
+0

感谢您的帮助! – RuFFCuT 2012-04-10 16:29:44

+0

脚本现在正在工作,但只有当我走到第二行时,我把一个URL放在文本区域,它给了我错误:**为foreach()**和** [function.get -meta-tags]:php_network_getaddresses:getaddrinfo失败:名称或服务未知** – RuFFCuT 2012-04-10 16:31:22

+0

'foreach($ TAarray as $ key =>&$ line){$ line = trim($ line); }' – kuba 2012-04-10 16:36:27