Phpstorm 有没有办法从';变量';调试器中的窗口?

Phpstorm 有没有办法从';变量';调试器中的窗口?,phpstorm,Phpstorm,在PhpStorm中调试时,我知道您可以右键单击“变量”窗格中的变量,然后选择上下文菜单项“复制值”。是否有复制数据结构(如数组或对象)的方法 $_GET = {array} [1] someVariable = "Hello this is a value, and it happens to be a string" anotherVar = "What is this string" 如果我右键单击“someVariable”并选择“Copy Value”,我将在剪贴

在PhpStorm中调试时,我知道您可以右键单击“变量”窗格中的变量,然后选择上下文菜单项“复制值”。是否有复制数据结构(如数组或对象)的方法

$_GET = {array} [1]
    someVariable = "Hello this is a value, and it happens to be a string"
    anotherVar   = "What is this string"
如果我右键单击“someVariable”并选择“Copy Value”,我将在剪贴板上显示该字符串

如果我右键单击带有数组的行并选择“复制值”,我将在剪贴板上获得“[1]”

我真正想要的是,当我右键单击并在数组上“复制值”时,我的剪贴板上会出现如下内容:

'[ 'someVariable' = 'Hello this is a value, and it happens to be a string', 'anotherVar' = 'What is this string ]'

有什么想法吗,或者有人需要制作这个插件吗?;)

目前不可能


请观看/投票此票证以获得进度通知:

从PhpStorm 9.0.0版(2015年7月8日发布)开始:

  • 在PhpStorm中调试时,右键单击“变量”窗格中的变量,然后选择上下文菜单项“将值复制为…”以复制变量作为中的一个的结果

有了PhpStorm Cool,这正是我想要的。是的,这是可能的。到目前为止,整个过程对我来说都很有效,只是当我复制表达式的结果时,我总是复制“can not get property”。有什么建议吗?好吧,我设法解决了。它不适用于xdebug 2.2.5,所以我更新到2.3.2,现在它可以工作了@user1798627能否更新以使其成为可接受的答案?