Home | Online Examples | Documentation | Forum | Page of Project | Download

TPLN Manual

Functions

Open
DirectIOWrite
DirectIOOutput
DirectIOSave
DefineTemplate
SetTemplate
ChangeTemplate
ParseGlobals
Parse
FastParse
LoadArrayInBloc
Loop
EraseItem
EraseBloc
GetFile
ParseBloc
ReloadBlocVars
IncludeFile
GetBlocInFile
Write
Output
SaveTemplate
ItemExists
BlocExists
#include Command
Automatic parsed variable
SetChrono

 

FastParse

void FastParse( string item [, string functions ] )

FastParse() function is the same function as Parse() except it evits you to rewrite a variable php


<?php

// FastParse
$name= "my_name";
$TPLN->FastParse("name");

// the same is
$TPLN->Parse("name",$name);
?>


TopTop