- 1
[Opened] [jTpl] comment faire un count($array) ?
Posted by peter on 03/08/2009 21:21
Bonsoir,
tout est dans le titre. j'ai un tableau que je veux afficher avec un {foreach} à condition qu'il ne soit pas vide évidemment.
Aussi bête que cela puisse paraître (et je sais que ça paraît très bête), je n'ai pas trouvé le {if.... } adéquat.
{if $array|count_array} ? {if count_array $array} ?
corrigez-moi si je me trompe: il n'est pas possible d'utiliser du code php dans un .tpl, si ? Parce qu'un
<?if():?> <?endif;?>
m'aurait simplifié la vie.
Help plize.
http://www.petermeuel.com
[Opened] Re: [jTpl] comment faire un count($array) ?
Posted by peter on 03/08/2009 21:50
ok, ouane eugaine
j'interprétais mal une erreur. un simple {if $array} suffit :)
http://www.petermeuel.com
[Opened] Re: [jTpl] comment faire un count($array) ?
Posted by laurentj on 03/09/2009 00:03
ou tout simplement
{if count($array)}
- 1