我得到了一个带有一些“标记”的 HTML 字符串。它们的结构类似于{:TOKEN_NAME:}
例如:
<!doctype html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
{:TITLE:}
{:DESCRIPTION:}
{:KEYWORDS:}
{:GOOGLE-VERIFY:}
{:BING-VERIFY:}
<link rel="stylesheet" href="/assets/css/base.styles.css?_=<?php echo time(); ?>" type="text/css" />
<link rel="stylesheet" href="/assets/css/custom.css?_=<?php echo time(); ?>" type="text/css" />
<!--[if lt IE 9]>
<script type="text/javascript" src="/assets/js/modernizr.min.js"></script>
<![endif]-->
</head>
<body>
<article data-role="page-wrapper" class="container-fluid">
<header class="row-fluid" data-role="page-header">
<h1 class="span5 logo pull-right"><a href="http://www.o7thwebdesign.com">o7th Web Design</a></h1>
<nav class="span7">
{:PAGE-CONTENT:}
</nav>
</header>
<section class="row-fluid" data-role="page-container">
</section>
<footer class="row-fluid" data-role="page-footer">
</footer>
</article>
<script type="text/javascript" src="/assets/js/scripts.js?_=<?php echo time(); ?>"></script>
<script type="text/javascript" src="/assets/js/custom.js?_=<?php echo time(); ?>"></script>
{:GOOGLE-UA:}
</body>
</html>
我还获得了一个关联数组,其中包含标记名称以及它们应该替换为的内容,如下所示:
// Populate and pull all global smarttags
private function PullGlobalSmartTags($values){
return array(array('Name'=>'{:TITLE:}', 'Replacement'=>'<title>' . $values[0] . '</title>'),
array('Name'=>'{:DESCRIPTION:}', 'Replacement'=>'<meta name="description" content="' . $values[1] . '" />'),
array('Name'=>'{:KEYWORDS:}', 'Replacement'=>($values[22]) ? null : '<meta name="keywords" content="' . $values[2] . '" />'),
array('Name'=>'{:GOOGLE-UA:}', 'Replacement'=>'<script type="text/javascript">var _gaq = _gaq || [];_gaq.push([\'_setAccount\', \'' . $values[3] . '\']);_gaq.push([\'_trackPageview\']);(function(){var ga = document.createElement(\'script\');ga.type = \'text/javascript\'; ga.async = true;ga.src = (\'https:\' == document.location.protocol ? \'https://ssl\' : \'http://www\') + \'.google-analytics.com/ga.js\';var s = document.getElementsByTagName(\'script\')[0]; s.parentNode.insertBefore(ga, s);})();</script>'),
array('Name'=>'{:GOOGLE-VERIFY:}', 'Replacement'=>'<meta name="google-site-verification" content="' . $values[4] . '" />'),
array('Name'=>'{:BING-VERIFY:}', 'Replacement'=>'<meta name="msvalidate.01" content="' . $values[5] . '" />'),
array('Name'=>'{:PAGE-CONTENT:}', 'Replacement'=>$values[6]),);
}
请假设填充中的所有值$values
,并正确填充(因为它们确实......)
我知道使用 str_replace 和 preg_replace 我可以简单地将数组作为我的针、替换和干草堆传递,但是我看到的所有内容都只显示非关联数组。
我的问题是,我该如何进行这些替换?我知道我可以简单地循环遍历数组,一次替换一个,但是有没有办法在不循环的情况下做到这一点?
这确实可以解决问题:
for($i=0; $i<$gsCt; ++$i){
$rettemp = str_replace($GlobalSmartTags[$i]['Name'], $GlobalSmartTags[$i]['Replacement'], $rettemp);
}
但是,我不认为这是最有效的方法。