最佳答案
假设我有一个变量 $test
,它被定义为: $test = 'cheese'
我想输出 cheesey
,我可以这样做:
echo $test . 'y'
但是我更愿意将代码简化为更像下面这样的东西(这样是不行的) :
echo "$testy"
有没有办法把 y
看作是与变量分离的?