Question

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?

Was it helpful?

Solution

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

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top