smarty template engine
Friday, July 25, 2008  
download | documentation | faq | forum | mailing lists | changelog | contribs 


search for in the  


get_template_vars()

get_template_vars() -- Retorna el valor asignado a una variable

descripción

array get_template_vars ( [string varname])

Si no tiene un parámetro dado, un arreglo de todas las variables asignadas es retornado.

Ejemplo 13-1. get_template_vars

<?php
// get assigned template var 'foo'
$foo $smarty->get_template_vars('foo');

// get all assigned template vars
$tpl_vars $smarty->get_template_vars();

// take a look at them
print_r($tpl_vars);
?>

Ver también assign(), {assign}, assign_by_ref(), append(), clear_assign(), clear_all_assign() y get_config_vars()




 

credits 

Smarty Copyright © 2002-2008
New Digital Group, Inc.

All rights reserved.