致命错误:在第 59 行的 C:Program FilesEasyPHP-12.1wwwsimplepi


Fatal error: Class 'SimplePie_Misc' not found in C:Program FilesEasyPHP-12.1wwwsimplepielibrarySimplePie.php on line 59

我开始在RSS中使用simplepie,我在第一阶段遇到了这个错误。

致命错误:在第 59 行的 C:''Program Files''EasyPHP-12.1''www''simplepie''library''SimplePie.php 中找不到类 'SimplePie_Misc'

编辑主文件夹称为"simplepie"子文件夹和文件是

  1. 缓存
  2. compatibilty_test
  3. .css
  4. 国际化域名
  5. 包括
  6. library(有SimplePie.php和一个名为SimplePie的文件夹)
  7. 测试
  8. 索引.php

这是代码

<?php  
//Load simplepie library  
require_once 'includes/autoloader.php';  
//new simplepie
$feed = new SimplePie();  
//address of multiple feeds
$feed->set_feed_url(array(
'http://crazyanagh.blogspot.com/feeds/posts/default'
));  
//enabling cache
$feed->enable->cache(true);
$feed->set_cache_location('cache');
$feed->set_cache_duration(1800);
//start the process
$feed->init();  
//handle all types(RSS, Atoms)
$feed->handle_content_type();
?>  

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">  
<html xmlns="http://www.w3.org/1999/xhtml">  
<head>  
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />  
    <link rel="stylesheet" href="css/default.css" />  
    <title>RSS Thing!</title>  
</head>  
<body>  
    <div id="container">
        <h1> SimplePie RSS Thing</h1>  
    </div><!--end container-->  
</body>  

你在缓存第一行犯了一个错误。应该enable_cache