0

我开始将 simplepie 用于 RSS,并且在第一阶段本身就遇到了这个错误。

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

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

  1. 建造
  2. 缓存
  3. 兼容性测试
  4. css
  5. 身份证
  6. 包括
  7. 库(有 SimplePie.php 和一个名为 SimplePie 的文件夹)
  8. 测试
  9. 索引.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>  

4

1 回答 1

-2

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

于 2013-12-19T08:17:36.833 回答