|
Posted by Freebird on 11/24/05 19:54
HERE'S MY QUESTION:
I've a smarty var, like this:
{$var}
that is equal to: ttttttttttttt|zzzzzzzzzzzz
It can be any size, the important is that they are separated by the '|'
How do I 'explode' that into an array or 2 variables in the smarty template
?
So I can just use:
{$var[0]} = ttttttttttttt;
{$var[0]} = zzzzzzzzzzzz;
HERE'S YOUR ANSWER,
> Try explode( ) like this:
> $pizza = "piece1 piece2 piece3 piece4 piece5 piece6";
> $pieces = explode(" ", $pizza);
> echo $pieces[0]; // piece1
> echo $pieces[1]; // piece2
> *** reference: http://us2.php.net/manual/en/function.explode.php
DO YOU READ THE MESSAGES BEFORE YOU ANSWER THEM ?
DO YOU THINK I DON'T KNOW HOW TO USE EXPLODE ?
I WAS REALLY CLEAR, TAKE IT A LOOK AT THE QUESTION ABOVE, I NEED TO THAT
WITHIN SMARTY TEMPLATES, GET IT ?
INSIDE SMARTY TEMPLATES, SMARTY !
TKS
Freebird
Navigation:
[Reply to this message]
|