template_exists() Verifica si el template especificado existe Descripción booltemplate_exists stringtemplate Este puede aceptar un path para el template en el filesystem o un recurso de cadena especificando el template. template_exists() Este ejemplo utiliza $_GET['page'] este incluye el contenido del template. Si el template no existe entonces un error de pagina es deplegado en su lugar. El page_container.tpl {$title} {include file='page_top.tpl'} {* include middle content page *} {include file=$page_mid} {include file='page_footer.tpl'} ]]> y el script PHP template_exists($mid_template) ){ $mid_template = 'page_not_found.inc.tpl'; } $smarty->assign('page_mid', $mid_template); $smarty->display('page_container.tpl'); ?> ]]> Ver también display(), fetch(), {include} y {insert}