0

我給了一個帶有一些「標記」的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); 
     } 

不過,我不相信這是做到這一點的最有效的方法。

+0

我不需要搜索任何東西,請重新閱讀 – Kevin

+0

這個問題你正在使用哪個php版本? – bansi

+0

PHP 5.4(或任何最新的),我的服務器的最新 – Kevin

回答

1

嘗試用PHP 5> = 5.5.0本

$replace = PullGlobalSmartTags($values); 
str_replace(array_column($replace, 'Name'), array_column($replace,'Replacement'), $html); 

這隻作品。參考:array_column

這裏有一些建議,直到你升級到5.5.0。

你可以像這樣將替換數組轉換爲單維數組並替換。

$replace = PullGlobalSmartTags($value); 
$kv = array(); 
for ($i=0;$i<count($replace);$i++){ 
    $kv[$replace[$i]['Name']]=$replace[$i]['Replacement']; 
} 
$rettemp = str_replace(array_keys($kv),array_values($kv),$rettemp); 

或者您可以更改函數PullGlobalSmartTags以返回單維數組並使用str_replace,如上所述。你甚至可以使用你建議的方法,但它在循環中有更多的替換。

我不會建議編譯生產服務器上的代碼,除非有絕對的必要性。

+0

5.4.9是最新的穩定版本,這就是我正在運行 – Kevin

+0

我升級了我的服務器。它仍然表明5.4.9是最新版本。我正在運行Ubuntu 13.04服務器,不,我不會從源代碼編譯 – Kevin

+0

並不意味着會讓你失望,我希望能夠在以後嘗試,即使不是明天的第一件事情。謝謝你堅持下去:) :) – Kevin