{% for l in la %}
<h4>- Episode {{ l.id }} - <br/>{{ l.titre }}</h4>
{% endfor %}
Comme tu récupère un tableau je pense que ça va aller beaucoup mieux $la = $em->getRepository("Entities\Article")->findBy([], ['id' => 'DESC'], 1);
Ceci dit ton code est correct aussi <?php
$array = [112,12,91,91,91,91,91,12];
$del = [91];
$new_array = array_diff($array, $del);
echo '<pre>';
print_r($new_array);
echo '</pre>';
/** Résultat
Array
(
[0] => 112
[1] => 12
[7] => 12
)
*/