PHP标签内的PHP标签?

时间:2015-05-11 20:24:53

标签: php tags rss

所以我只是按照这个指南:

http://www.bitrepository.com/php-how-to-add-multi-language-support-to-a-website.html

一切正常,但现在我遇到了问题:

我想放置文字的所有地方:<?php echo $lang['FOOTER_CURRENCY']; ?>

但是我有一个用于RSS feed的PHP代码:(在我的php文件中)

<?php
    // Show number of items  
    $items = 6;  

    // Load rss into simplexml rss from pctuts http://www.pctuts.be/external.php?do=rss&type=newcontent&sectionid=1&days=120&count=10 just replace this link voor the right one
    $rss        = simplexml_load_file('http://test.blogspot.com/feeds/posts/default?alt=rss'); 

    // show last items  
    for($i=0;$i<$items;$i+=1)  
       {  
       echo "<div class=\"channel\"><a href=\"{$rss->channel->item[$i]->link}\" target=\"_blank\">{$rss->channel->item[$i]->title}</a></div>\n";
       }  

    ?>

现在我不想用各种语言替换RSS Feed链接。所以我把它改成了,就像我通常做的那样:

此:

$rss        = simplexml_load_file('http://cupandsaucersweden.blogspot.nl/feeds/posts/default?alt=rss');

要:

$rss        = simplexml_load_file('<?php echo $lang['FOOTER_RSSFEED']; ?>');

当然,php标签内的php标签不起作用所以我这样做了:

$rss        = simplexml_load_file('echo $lang['FOOTER_RSSFEED']; ');

也不起作用,我尝试了很多其他的东西,但它不起作用。有人可以帮我这个吗?

0 个答案:

没有答案