simplepie 包括一个带有提要列表的 php 文件
simplepie include a php file with feed list
我需要一些关于 simplepie 和 php 的帮助。
我使用此代码回显重张进纸:
<?php
echo SimplePieWP(array(
'http://feed1',
'http://feed2',
'http://feed3',
), array(
'items' => 5,
));
?>
它工作正常,但我想将提要作为列表放在不同的 php 文件中,如下所示:
'http://feed1',
'http://feed2',
'http://feed3',
我应该如何修改第一个代码以将 php 文件包含在提要数组中?我试过了,但没用:
<?php
echo SimplePieWP(array(
include("feed_array.php");
), array(
'items' => 5,
));
?>
有什么想法吗?谢谢
几乎,您也可以包含 return 一个值:
#feed_array.php
<?php
return [
'http://feed1',
'http://feed2',
'http://feed3'
];
?>
#index.php
<?php
echo SimplePieWP(include('feed_array.php'),[
'items' => 5
]);
?>
但请记住,如果包含失败,它会抛出警告 and returns false
。
我需要一些关于 simplepie 和 php 的帮助。 我使用此代码回显重张进纸:
<?php
echo SimplePieWP(array(
'http://feed1',
'http://feed2',
'http://feed3',
), array(
'items' => 5,
));
?>
它工作正常,但我想将提要作为列表放在不同的 php 文件中,如下所示:
'http://feed1',
'http://feed2',
'http://feed3',
我应该如何修改第一个代码以将 php 文件包含在提要数组中?我试过了,但没用:
<?php
echo SimplePieWP(array(
include("feed_array.php");
), array(
'items' => 5,
));
?>
有什么想法吗?谢谢
几乎,您也可以包含 return 一个值:
#feed_array.php
<?php
return [
'http://feed1',
'http://feed2',
'http://feed3'
];
?>
#index.php
<?php
echo SimplePieWP(include('feed_array.php'),[
'items' => 5
]);
?>
但请记住,如果包含失败,它会抛出警告 and returns false
。