多个str_replace的问题

时间:2011-06-06 08:21:35

标签: php string replace

我有2个链接文件,我需要更换2件事。 只有第一个工作,另一个仍然有占位符。

文件1

ob_start() ;

//buffers and gets title and meta
echo "<title>";
$gettitle="##pagetitle##";
echo $gettitle;
echo "</title>";

echo "<META NAME=\"Description\" CONTENT=\"";
$getmeta="##metacontent##";
echo $getmeta;
echo "\">";

文件2

$pagetitle = "Reviews and Tutorials" ;
  str_replace("##pagetitle##", $pagetitle, $gettitle) ;
$metacontent = "Reviews and Tutorials from Socal Mods. Discover something new!" ;
  str_replace("##metacontent##", $metacontent, $getmeta) ;
ob_clean;

因此,在结果页面中标题可以正常工作,但它只是打印## metacontent ##。

提前致谢

我曾尝试使用不同的ob_控件,但无法使其工作。

1 个答案:

答案 0 :(得分:0)

删除第一个ob_clean。它会起作用。