Smarty Icon

You may use the Smarty logo according to the trademark notice.

Smarty Template Engine Smarty Template Engine

For sponsorship, advertising, news or other inquiries, contact us at:

Sites Using Smarty

Advertisement

Postfilters

Template postfilters adalah fungsi PHP di mana templates anda dijalankan setelah dikompilasi. Postfilters bisa teregistrasi atau diambil dari direktori plugins dengan menggunakan fungsi load_filter() atau dengan menyetel variabel $autoload_filters. Smarty akan mengoper kode template terkompilasi sebagai argumen, dan mengharapkan fungsi untuk mengembalikan hasil pemrosesan.

Teladan 15-3. Menggunakan template postfilter

\\n\\"; ?>\\n".$tpl_source; } // daftarkan postfilter $smarty->register_postfilter(\'add_header_comment\'); $smarty->display(\'index.tpl\'); ?>'); ?>

Postfilter di atas akan membuat Smarty template terkompilasi index.tpl terlihat seperti:

<!-- Created by Smarty! -->
{* konten template seterusnya... *}

Lihat juga register_postfilter(), prefilters dan load_filter().