Re: [SMARTY] Array keys, values
[email protected] (messju mohr) Tue, 16 Oct 2007 09:03:30 +0200
| Newsgroups | php.smarty.general |
|---|---|
| Message-ID | <[email protected]> |
On Mon, Oct 15, 2007 at 04:31:23PM -0500, Josh Trutwin wrote:
> > * get the total count of the elements w/o having to iterate through
> > the array
>
> {$my_array|@count}
>
> > * be able to access the first or last element even if the keys
> > aren't numeric
{$my_array|@reset}
... just my 2 ct
> Not very efficient but could do:
>
> {foreach from=$my_array item=arr name=arr_loop}
> {if $smarty.foreach.arr_loop.first}
> do something for first only
> {/if}
> {/foreach}
>
> Josh