MobaSiF::Template - Very fast Template module written by XS.


MobaSiF-Template documentation  | view source Contained in the MobaSiF-Template distribution.

Index


NAME

Top

MobaSiF::Template - Very fast Template module written by XS.

SYNOPSIS

Top

  use MobaSiF::Template;

  my $compiled_template_file = "compiled_template.bin";
  my $refParamHash = {
    base => 'MobaSiF::Template Test',
	list => [
	  { id => 1 , value => 'A' },
	  { id => 2 , value => 'B' },
	 ]
  };
  $html = MobaSiF::Template::insert($compiled_template_file, $refParamHash);
  print $html;

ABSTRACT

Top

事前コンパイルされたテンプレートバイナリを用いて高速なテンプレート処理を行います。 ループ・条件分岐・置換(URL ENCODE, HTMLSPECIALCHARS(+NL2BR) が可能)に対応しており、基本的なHTMLテンプレートの処理に対応できます。

DESCRIPTION

Top

SEE ALSO

Top

MobaSiF::Template::Compiler


MobaSiF-Template documentation  | view source Contained in the MobaSiF-Template distribution.