Ben avec ce qu'il t'avait fait tu pouvais.
J'ai un peu modifier son code mais ça devrait marcher comme ça.
$noms et $cours sont donc deux tableaux différents comme tu le voulais
J'ai un peu modifier son code mais ça devrait marcher comme ça.
Code :
<?php
$code = file_get_contents('http://www.boursier.com/vals/FR/index/FR0003500008-composition-cac+40.html');
preg_match_all(
'#<td><a .*>([^<]+)</a></td><td .*>(.*)</td>#U',
$code,
$a
);
$noms = $a[1];
$cours = $a[2];
?>
$noms et $cours sont donc deux tableaux différents comme tu le voulais