1

我是 PHP 编程新手,我有一个需要一些 SEO 的网站。这是一个 PHP 站点,文件是 .tpl。对于它的描述,它有

<meta name="description" content="<?php echo $description; ?>" />

如何在不破坏 PHP 的情况下对描述和关键字进行硬编码?

4

2 回答 2

1

我认为使用包含您的元信息的数组可能是合适的。

$meta = array();
$meta["description"] = 'My site';

foreach($meta as $key => $value)
{
    echo '<meta name="'.$key.'" content="'.$value.'"/>';
}
于 2012-11-05T18:25:31.360 回答
0

您可以在包含模板之前在 .php 文件中定义 $description (以及您喜欢的任何变量。例如:

$description = 'My site';
$keywords = 'my, site';

// the code to include the template
于 2012-11-05T18:15:52.587 回答