我正在尝试使用 simplepie 从远程 wordpress 站点中提取一些帖子。我已经安装了库并将我认为正确的代码放在 .php 页面的顶部。
现在我看起来像:
<?php
require_once('../autoloader.php');
$feed = new SimplePie();
$feed->set_feed_url('http://simplepie.org/blog/feed/');
$feed->enable_cache(true);
$feed->set_cache_location('cache');
$feed->set_cache_duration(1800);
$feed->init();
$feed->handle_content_type();
?> {doc type}
但是当我加载我的页面时,它告诉我:
警告:require_once(../autoloader.php) [function.require-once]:无法打开流:第 2 行的 /home/content/27/9279927/html/LatestHOPE.php 中没有这样的文件或目录
致命错误:require_once() [function.require]:无法在 /home/content/27/9279927 中打开所需的 '../autoloader.php' (include_path='.:/usr/local/php5_3/lib/php') /html/LatestHOPE.php 在第 2 行
那是怎么回事?为什么要告诉我这个?我的根目录中有 autoloader.php。