문제

I'm trying to use SimplePie for Laravel to parse RSS feeds. I have followed the instructions and all, but can't seem to make it work.

This is my View. I echoed the rss

<?php $result = rssparser::parse(); 
echo $result;?>

And this error appears:

Non-static method SimplePie_Misc::fix_protocol() should not be called statically, assuming $this from incompatible context

C:\wamp\www\ctnpepo\bundles\rssparser\libraries\simplepie\SimplePie.php on line 834

Is there any way to fix this?

도움이 되었습니까?

해결책

This is only a warning internally in SimplePie, and you can safely ignore it.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top