我目前正在使用get_meta_tags从各种网站获取代码,如下所示:
<?php $tags = get_meta_tags('http://www.stackoverflow.com/'); ?>
这是我用来显示该信息的代码:
<?php echo $tags['description']; ?><br /><br />
<?php echo $tags['keywords']; ?>
现在有两件事我无法弄清楚如何做:
如果元描述不存在,如何删除<br /><br />
?基本上就是这样,顶部没有额外的线条导致空位。
如何将关键字全部链接到我的域名,例如
http://mysite.com/keyword/coding``http://mysite.com/keyword/website-builder
或http://mysite.com/keyword/php-help
?
答案 0 :(得分:2)
这应该可以解决问题:
<?php
$tags = get_meta_tags('http://www.ebay.com/');
if(trim($tags['description'])!='') //if description is set and not empty
{
echo ($tags['description']).'<br /><br />';
}
echo $tags['keywords'];
$keywordArray = explode(",", $tags['keywords']); //split string with keywords in an array
foreach($keywordArray as $keyword) //for each entry in the array
{
echo "http://www.mysite.com/".urlencode(trim($keyword)); //echo your URL. Encode the keyword in case special chars are present
}
?>
Akam给了你if语句的简短记号,我个人更喜欢长记法。