Jump to content

Syntaxe d’une variable compteur dans un TPL


Recommended Posts

Bonjour,

je voudrai compter le nombre de produit (sans utiliser sizeof($products) ), et donc j’ai pensé à une variable compteur , pourriez vous m’aider pour la syntaxe

 

$i=0
{foreach from=$products}
$i++
{/foreach}

Link to comment
Share on other sites

Bonjour,

 

Tu te compliques la vie :

 

{$products|@count}

 

fonctionne très bien.

 

Si tu souhaites tout de même te compliquer :

 

{assign var="i" value="0"}
{foreach from=$products item=product}
{assign var=$i value=$i++}
{/foreach}

  • Like 1
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...