我开始将 simplepie 用于 RSS,并且在第一阶段本身就遇到了这个错误。
致命错误:第 59 行的 C:\Program Files\EasyPHP-12.1\www\simplepie\library\SimplePie.php 中找不到类“SimplePie_Misc”
编辑 主文件夹称为“simplepie”子文件夹和文件是
- 建造
- 缓存
- 兼容性测试
- css
- 身份证
- 包括
- 库(有 SimplePie.php 和一个名为 SimplePie 的文件夹)
- 测试
- 索引.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>