php之phpstorm自动代码补全的使用
phpstorm代码补全的设置
1、打开首选项Editor、Live Templates。
2、点击PHP、右上角新增Live Template,点击下面的Define、勾选PHP
3、添加描述,Template Text输入以下代码
$cond = ['conditions' => 'title like :title:', 'bind' => ['title' => '%'.$title.'%']];$cond['order'] = 'id desc';
需要补全代码时,使用Tab键即可
phpstorm补全代码失效的处理
安装好phpstorm之后发现代码高亮和函数自动提示都失效了 网上有人说可能是Power save mode的原因开始没找到这个设置在哪
在底部面板的信息提示处发现有一条系统消息:
17:04:38 Power save mode is onCode insight and other background tasks are disabled.
Do not show again
Disable Power Save Mode
点击Disable Power Save Mode即可关闭之后一切正常。
以上就是php之phpstorm自动代码补全的使用,希望对大家有所帮助。更多php学习指路:php教程
推荐操作系统:windows7系统、PHP5.6、DELL G3电脑
以上是 php之phpstorm自动代码补全的使用 的全部内容, 来源链接: utcz.com/z/544502.html