//function nettoyage titre jeu
function nettitre_jeu($text)
{
$text = preg_replace('#Fiche compl[^"]+te#is','',$text);
$text = str_replace(array('- PC', '- Playstation 3', '- Xbox 360', '- Wii', '- Nintendo DS', '- Playstation Portable', '- iPhone/iPod' ), array('', '', '', '', '', '', ''), $text);
return $text;
}