$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';
無提前工作...謝謝,,
你考慮過使用數組嗎? – jeroen
如果你必須使用變量變量,你有一些主要的設計缺陷... –