I have a php variable and I had to insert into it html code with another variable. ie:

myarray['foo'] = "<p><? echo $var; ?></p>"

but in this way it doesnt' work. How could escape it correctly?

link|improve this question

67% accept rate
feedback

3 Answers

up vote 2 down vote accepted

Just do:

myarray['foo'] = "<p>$var</p>"

PHP handles all the parsing for you.

EDIT:

From your comment about the array, you could print the raw contents of the array (not very helpful for an app, but fine for debugging):

myarray['foo'] = "<p>".print_r($var, true)."</p>";
link|improve this answer
myarray['foo'] = "<p>".$var."</p>" also works :D – rackemup420 Feb 19 at 1:54
@davidethell it work even if the variable is a an array variable? like $array->var ? – eng_mazzy Feb 19 at 1:58
@eng_mazzy, no it won't. It will try to cast $var to a string which will just show the text "Array" for an array. You would have to loop through the array to do something with each array or else use print_r. I edited the answer to show it. – davidethell Feb 19 at 1:59
feedback
myarray['foo'] = "<p>" . $var . "</p>"
link|improve this answer
feedback

Can't you just do

my_array['foo'] = '<p>'.$var.'</p>';
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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