Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have some variables inside a template and i dont know where i assigned them, so i need to know what inside this variable is

say i have a var in smarty called member

i tryed with {debug} but it didnt work, no popup was shown. How can i debug smarty variables using something like var_dump() inside the templates ?

share|improve this question

5 Answers

up vote 35 down vote accepted

You can use {php} tags

Method 1:

{php}

$var =
$this->get_template_vars('var');
var_dump($var);

{/php}

Method 2:

{$var|@print_r}

Method 3:

{$var|@var_dump}

Let me know if this helps.

share|improve this answer
2  
Ohh Yes This worked a big thanks, and have a nice Day :-) – streetparade Mar 12 '10 at 10:11
Resorting to php tags is not good practice and ideally they should be disabled for security reasons anyway. @debug_print_var (see answer from Chris) is a much better solition. – thelem Nov 21 '12 at 23:41

This should work:

{$var|@print_r}

or

{$var|@var_dump}

The @ is needed for arrays to make smarty run the modifier against the whole thing, otherwise it does it for each element.

share|improve this answer
2  
{$var|var_dump} works great :) . – James Poulson May 6 '11 at 9:09
Oooh ! perfect !! this is a very good trick =) – atmon3r Jul 26 '12 at 21:38
8  
A lot better then the chose answer. – Damien Aug 15 '12 at 11:27

For what it's worth, you can do {$varname|@debug_print_var} to get a var_dump()-esque output for your variable.

share|improve this answer

just use {debug} in your .tpl and look at your sourcecode

share|improve this answer
Nice. This actually created a pop-up window for me, so I didn't have to look at the source. Had to disable my pop-up blocker though. – Hobo Jul 11 '12 at 9:22

try this .... Set $debugging to TRUE in Smarty.

share|improve this answer
sure i know that, but i need to do it without modding the core php files – streetparade Mar 12 '10 at 9:55

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.