Say I have a variable $test
and it's defined as: $test = 'cheese'
I want to output cheesey
, which I can do like this:
echo $test . 'y'
But I would prefer to simplify the code to something more like this (which wouldn't work):
echo "$testy"
Is there a way to have the y
be treated as though it were separate from the variable?
Question&Answers:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…