Documentation
save
usage
file->save( string text )
paramètres
text: the text you want to save in the file.
exemples
include('../Kernel/common/file.class.php');
$file = new File('/media/summary.txt');
$file->create();
$file->save(
"Meeting summary:
1. Introduction
2. ..."
);