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

template_exists()

template_exists() -- memeiksa apakah template yang ditetapkan sudah ada

Deskripsi

bool template_exists ( string template)

Ini dapat menerima baik path ke template pada sistem file ataupun string sumber daya yang menetapkan template.

Teladan 13-1. template_exists()

Contoh ini menggunakan $_GET['page'] untuk {include} konten template. Jika template tidak ada maka halaman kesalahan yang ditampilkan. Pertama page_container.tpl

{$title} {include file=\'page_top.tpl\'} {* sertakan halaman konten tengah *} {include file=$content_template} {include file=\'page_footer.tpl\'} '); ?>

Dan naskah php

template_exists($mid_template) ){ $mid_template = \'page_not_found.tpl\'; } $smarty->assign(\'content_template\', $mid_template); $smarty->display(\'page_container.tpl\'); ?>'); ?>

Lihat juga display(), fetch(), {include} and {insert}