Jump to content

Smarty - Trouble Assigning


Jessica

Recommended Posts

I posted on Smarty's forums and no one has responded yet:

 

I have tried several versions of this, and nothing works. I want carDesc to have a string, the year make and model, which are values of $car. I can print them out normally, but all of these attempts to make one variable fail. I also cannot use the $car object's toString method, so I am at a loss.

 

Code:

 

{assign var=carDesc value='$car->year $car->make $car->modelDesc'}

{assign var=carDesc value=`$car->year $car->make $car->modelDesc`}

{assign var=carDesc value='{$car->year} {$car->make} {$car->modelDesc}'}

{assign var=carDesc value=`{$car->year} {$car->make} {$car->modelDesc}`}

 

 

I even tried making a toString wrapper so I could use the internal toString and that fails too!

Code:

 

{assign var=carDesc value=$car->toString()}

 

 

Help!

Link to comment
https://forums.phpfreaks.com/topic/85908-smarty-trouble-assigning/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.