3
我正在嘗試在PhpStorm中創建一個活動模板,但我在動態創建變量時遇到了問題。我試圖做這樣的事情:如何在PhpStorm live模板中動態創建一個php變量?
$$VARIABLE_NAME$ = function($END$)
{
};
$this->foo(array('$VARIABLE_NAME$' => $$VARIABLE_NAME$));
比方說,我們鍵入的$ VARIABLE_NAME $「吧」,我希望得到以下結果:
$bar = function()
{
};
$this->foo(array('bar' => $bar));
基本上我需要一種逃避$ VARIABLE_NAME $的方法,以便它爲您輸入的值創建一個php變量。有誰知道如何做到這一點?