0

テキスト領域に入力された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>';
        }
?>

また、メタディスクリプションのみを含める方法はありますか?

4

1 に答える 1

1

1) フォームは GET として宣言されていますが、$_POST フィールドから値を読み取っています。

2) 「説明」メタ値のみを抽出する場合は、タグを反復処理する必要はありません。次のように使用できます。

$description = $tags["description"]
于 2012-04-10T16:24:13.527 に答える