Bestanden lezen / schrijven - CSS-trucs

Anonim

Toevoegen aan een bestand

function fileWrite($file, $message) ( fwrite(fopen($file, 'a'), $message . "\n"); )

Lees en toon het volledige bestand

function fileRead($file)( $lines = file($file); foreach ($lines as $line_num => $line) ( echo $line, '
'; ) )