<?php // Lire le fichier dans un tableau (morceaux) $str = '';$fp = fopen('https://www.apcpedagogie.com', 'r') or die('ERROR: Ne peut pas ouvrir le fichier'); while (!feof($fp)) { $str .= fgets($fp,512); } fclose($fp); echo $str; ?>