|
|
GetFile
string GetFile( string filename [, string blocname ] ) |
The GetFile() function serves to return the file content.
If optionnal parameter blocname is precised the function will return blocname in the file. |
<?php
// Getfile (open file file.html et return bloc1 of file.html)
$file= $TPLN->GetFile("file.html","bloc1");
?>
|
|