Paolo666 Posted March 4, 2012 Share Posted March 4, 2012 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 More sharing options...
luci1 Posted March 6, 2012 Share Posted March 6, 2012 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} 1 Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now