Usando questo codice:
<?
$file = 'file.txt';
if (is_readable($file) == false) {
echo ("Il file non esiste o non può essere letto.");
} else {
array_chunk(array,size,preserve_key)
$contenuto = file_get_contents($file);
// echo htmlentities($contenuto);
}
?>
<div style="color:red;">
<? echo htmlentities($contenuto);?></p></div>
leggo una stringa contenuta in un file txt esterno e la scrivo a video nel tag html..........e fin qui ok.
Ora devo "splittare" piu' stringhe nel txt.....come è possibile farlo ? Ho visto questo: array_chunk(array,size,preserve_key) ma non mi pare che riesca a splittare stringhe di un file esterno ma gestisce un array interno alla pagina....potete darmi qualche eventuale esempio o spiegarmi come fare ??
Chiaramente avete capito che sono un novellino......![]()