Consider:
The value of my_const is {my_const}. MYECHO; ?>
Use sprintf()
define('my_const', 100); $string = <<< heredoc The value of my_const is %s. heredoc; $string = sprintf($string, my_const);
The value of my_const is %s.