$m = 'this_is_m';
$this_is_m = 'this_is_m_not_full :(';
$this_is_m_full = 'this_is_m_FULL!! :D';
print ${$m};
(嗨,第一:P)输出:
this_is_m_not full :(
知道如何this_is_m_FULL!! :D
使用 $m
输出吗?
我已经尝试过的:
print $"{$m}_full";
print $'{$m}_full';
print $'$m_full';
print ${$m}_full';
没有工作...在此先感谢,,