PHP code
channel['title']; echo 'Latest News from ' . $feedTitle . '
响应式表白源码下载,vscode高亮怎么设置,ubuntu有证券,tomcat替换地图,sqlite循环删除旧数据,爬虫温控箱温度上不去,php 锁表,企业开展seo思路,织梦网站统计,易语言源码和网页源码下载,用户场景 模板lzw'; foreach ($rss->item as $it) { $link = $it['link']; $title = $it['title']; $description = isset($it['description']) ? $it['description'] : '';echo '' . $title . '
' . $description . 'asp装修源码,vscode整体代码往后,ubuntu 页面设计,tomcat多80,登陆SQLite数据库,商务大数据分析爬虫数据,php 删除记录,巴南专业seo公司,微信付费视频网站源码,123网页下载,织梦tag标签管理模板不存在lzw'; }?>
XML:
(http://localhost/PHPProject/RSS/RSS.xml)
XML code
- -XHTML http://localhost/PHPProject/NewFile.html Free web building tutorials Web development en-US 2006 w3school.com.cn. All rights reserved. -RSS Tutorial http://localhost/PHPProject/NewFile.html New RSS tutorial on W3School [email protected] http://localhost/PHPProject/NewFile.html
1.
为什么运行显示为:
Latest News from W3School Home Page
RSS Tutorial
New RSS tutorial on W3School
后点击RSS Tutorial后却显示HTTP 403?
2.
在PHP中的foreach ($rss->item as $it)中的item为什么非要设置items才可以运行成功,否则为
Latest News from W3School Home Page
Notice: Undefined property: MagpieRSS::$item in D:\Apache Group\Apache2\htdocs\PHPProject\index5.php on line 10
Warning: Invalid argument supplied for foreach() in D:\Apache Group\Apache2\htdocs\PHPProject\index5.php on line 10
但我的XML中之内是而非喔。。。。
3.
我修改XML文件之前的中的
就算重启整个zend studio都继续显示Latest News from W3School Home Page,真不明白。。。。也不关缓存的事啊。。我已经清除了缓存了
麻烦各位帮帮忙。。我还有分加的
——解决方案——————–
1. 你的代码有问题:
echo ‘
‘ . $title . ‘
‘ . $description . ‘
‘;
由于 $link在单引号内所以不会被解析。所以链接也就是 本页链接$link
至于为什么403无权限就要看你的服务器设置。
2. RSS标准中规定: A channel may contain any number of s.
XML code
... ... ...
------解决方案--------------------