我正在试用这个tutorial来读取带有php文件的RSS源并缓存它。 我将源代码复制并粘贴到我自己的项目中。我在Mac OS X上安装使用XAMPP。
以下是来源:
首先,我无法使用mkdir创建目录。它说许可被拒绝了。
其次,$feed = file_get_contents($path, true);
没有返回php对象。我的意思是当我用if ( is_object($feed) && $feed->query->count )
检查时,我无法通过。
最后,我不能$cachefile = fopen($cache, 'wb');
<?php
$cache = dirname(__FILE__) . "/cache/feed";
echo filemtime($cache);
if(filemtime($cache))
{
// Get from server
if ( !file_exists(dirname(__FILE__) . '/cache') ) {
mkdir(dirname(__FILE__) . '/cache', 0777);
}
// YQL query (SELECT * from feed ... ) // Split for readability
$path = "http://query.yahooapis.com/v1/public/yql?q=";
$path .= urlencode("SELECT * FROM feed WHERE url='http://feeds.hindustantimes.com/HT-HomePage-TopStories'");
$path .= "&format=json";
// Call YQL, and if the query didn't fail, cache the returned data
$feed = file_get_contents($path, true);
print_r($feed);
// If something was returned, cache
if ( is_object($feed) && $feed->query->count ) {
$cachefile = fopen($cache, 'wb');
fwrite($cachefile, $feed);
fclose($cachefile);
echo 'writing to disk';
}
}
else
{
// We already have local cache. Use that instead.
$feed = file_get_contents($cache);
}
// Decode that shizzle
$feed = json_decode($feed);
print_r($feed);
// Include the view
//include('views/site.tmpl.php');
?>
答案 0 :(得分:1)
非常确定XAMPP是以&#34; nobody&#34;用户,所以你必须给予#34; nobody&#34;对要写入的目录的权限:
chown nobody:nobody dir_in_question
请记住,XAMPP是一个出色的开发服务器,但开箱即不安全,所以在生产中使用它时要小心。有关相关问题,请参阅this article。