我給了一個帶有一些「標記」的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_repla我可以簡單地將數組作爲我的針,替換物和乾草堆,但是我所看到的只是顯示非關聯數組。
我的問題是,我該如何做這些替換?我知道我可以簡單地循環訪問數組,並且一次只執行一次替換,但是有沒有辦法在不循環的情況下執行此操作?
這確實做的伎倆:
for($i=0; $i<$gsCt; ++$i){
$rettemp = str_replace($GlobalSmartTags[$i]['Name'], $GlobalSmartTags[$i]['Replacement'], $rettemp);
}
不過,我不相信這是做到這一點的最有效的方法。
我不需要搜索任何東西,請重新閱讀 – Kevin
這個問題你正在使用哪個php版本? – bansi
PHP 5.4(或任何最新的),我的服務器的最新 – Kevin