在PhpStoem 10中真正无法使用的功能。 我复制,为了exaple
'.$this->createUrl('edit', array('id' => $model->id).'
并粘贴到我的视图中:
echo '<a href="PASTE HERE">Edit</a>';
得到了:
echo '<a href="\'.$this->createUrl(\'edit\', array(\'id\' => $data->id)).\'">Edit</a>';
行, 我在我的观点中复制:
echo '<a href="'.$this->createUrl('edit', array('id' => $model->id).'">edit</a>';
和过去的底线。 Voila - 结果相同:
echo '<a href="\'.$this->createUrl(\'edit\', array(\'id\' => $data->id)).\'">Edit</a>';
如何禁用该功能?