|
|
DirectIOOutput
string DirectIOOutput( [string filename]) |
La fonction DirectIOOutput() est une macro qui permet d'ouvrir et de retourner un template. |
<?php
$TPLN->DirectIOOutput("my_template.html");
// is the same as
$TPLN->Open("my_template.html");
$file = $TPLN->Output();
echo "$file";
?>
|
|