کد PHP:
<?php
echo '<meta charset="UTF-8">';

error_reporting(E_ALL);

$xml file_get_contents('http://yoursite.com/feed/');

// MUNG THE XML BECAUSE WE DO NOT HAVE THE NAMESPACE INFORMATION
$xml str_replace('content:encoded''content__encoded'$xml);
$xml str_replace('isc:',            'isc__',            $xml);

// CONVERT THE XML TO AN OBJECT
$obj SimpleXML_Load_String($xml'SimpleXMLElement'LIBXML_NOCDATA);


// GET SOME FIELDS
foreach($obj->channel->item as $item)
{
  
$item_title $item->title;
  
$item_link $item->link;
  
$item_description $item->description;
  
$item_enclosure $item->enclosure->attributes()->url;

    if(
strpos($item_title'موزیک ویدئو')) return;
    echo 
"<br/><strong>$item_title</strong> $item_description<br/>$item_enclosure";
}
?>