从关联数组中的值替换字符串

时间:2013-07-16 12:24:37

标签: php preg-replace associative-array str-replace preg-replace-callback

我给了一串带有一些“令牌”的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我可以简单地将数组作为我的needle,replacement和haystack传递,但是我看到的只是显示非关联数组。

我的问题是,我该如何进行这些替换?我知道我可以简单地循环遍历数组,并一次进行一次替换,但有没有办法在没有循环的情况下执行此操作?

这确实可以解决问题:

        for($i=0; $i<$gsCt; ++$i){
            $rettemp = str_replace($GlobalSmartTags[$i]['Name'], $GlobalSmartTags[$i]['Replacement'], $rettemp);
        }
但是,我认为这不是最有效的方法。

1 个答案:

答案 0 :(得分:1)

试试这个

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

这仅适用于PHP 5&gt; = 5.5.0。参考: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,如上所述。你甚至可以使用你建议的方法,但它在循环中有更多的替换。

除非绝对必要,否则我不建议从生产服务器上的代码进行编译。