OK, call me lazy but is there a way to have constants and associative arrays (with more than one set of []'s) parsed in strings enclosed by "'s? ie.
define('SOME_STUFF', 'xyz');
$stuff['abc']['xyz'] = 'pdq';
// Doesn't work
$string = "SOME_STUFF and $stuff[abc][xyz]";
// Works
$string = SOME_STUFF . ' and ' . $stuff['abc']['xyz'];