You can use @to suppress a warning:
if(($handle = @fopen("http://feedurl", "r")) !== FALSE){
}
This is suitable here because you are handling the error condition correctly. Please note that liberal use of the mark @is generally not recommended for suppressing errors and warnings.
In manual input forfopen :
, E_WARNING. @ .