我需要一点帮助simplepie和php。 我使用此代码来回显多页进纸:
<?php
echo SimplePieWP(array(
'http://feed1',
'http://feed2',
'http://feed3',
), array(
'items' => 5,
));
?>
它工作正常,但我希望将feed作为列表放在不同的php文件中,如下所示:
'http://feed1',
'http://feed2',
'http://feed3',
我应该如何修改第一个代码以包含带有feed数组的php文件?我尝试了这个,但它不起作用:
<?php
echo SimplePieWP(array(
include("feed_array.php");
), array(
'items' => 5,
));
?>
有什么想法吗?感谢
答案 0 :(得分:1)
几乎,你可以让包括返回一个值:
#feed_array.php
<?php
return [
'http://feed1',
'http://feed2',
'http://feed3'
];
?>
#index.php
<?php
echo SimplePieWP(include('feed_array.php'),[
'items' => 5
]);
?>
但请记住,如果包含失败,则会发出警告,而会返回false
。