|
|
DirectIOOutput
string DirectIOOutput( [string filename]) |
DirectIOOutput() function is a macro that permits to open and return a template. |
<?php
$TPLN->DirectIOOutput("my_template.html");
// is the same as
$TPLN->Open("my_template.html");
$file = $TPLN->Output();
echo "$file";
?>
|
|