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

Let's say I have something like this:

echo "This is a $variable";
echo "<?php echo $var; ?>";

How can I make it simply output:

This is a $variable
<?php echo $var; ?>

Instead of trying to parse the variables?

share|improve this question
Please add the expected output. Your question is hard for me to understand the goal. – Kevin Peno Mar 30 '11 at 20:57

4 Answers

up vote 5 down vote accepted

Use single-quotes rather than double-quotes:

$var = 'This is a $variable';
echo $var;

Output:

This is a $variable
share|improve this answer

Use single quotes

echo 'This is a $variable';
echo '<?php echo $var; ?>';
share|improve this answer

Use single-quotes instead of double-qoutes:

echo '<?php echo $var; ?>';

If you want to show it in a web browser, use htmlentities so it's not interpreted as a html tag:

echo htmlentities('<?php echo $var; ?>');
share|improve this answer

Use single quotes

echo 'my vars = $a, $b, $c';

or if you need double quotes escape $ sign with slash in front of it like:

echo "my vars = \$a, \$b, \$c";

or use chr(36) to replace $ sign (my fav :) ), or.... etc

share|improve this answer

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.