Blogger Information
Blog 47
fans 0
comment 3
visits 44812
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
phpstorm多行快捷操作操作,筛选相似内容
江流
Original
1894 people have browsed it
  • 本文讲述,在phpstorm中,如何使用快捷键,把下面的代码中的字段名提取出来,放到数组的方括号中。
  1. $table->integer('user_id')->comment('创建者');
  2. $table->integer('category_id')->comment('分类');
  3. $table->string('title')->comment('标题');
  4. $table->string('description')->comment('描述');
  5. $table->integer('price')->comment('价格');
  6. $table->integer('stock')->comment('库存');
  7. $table->integer('sales')->default(0)->comment('销量');
  8. $table->string('cover')->comment('封面图');
  9. $table->json('pics')->nullable()->comment('小图集');
  10. $table->tinyInteger('is_on')->default(0)->comment('是否上架 0不上架 1上架');
  11. $table->tinyInteger('is_recommend')->default(0)->comment('是否推荐 0不推荐 1推荐');
  12. $table->text('details')->comment('详情');
  • 最后的效果
  1. [
  2. 'user_id',
  3. 'category_id',
  4. 'title',
  5. 'description',
  6. 'price',
  7. 'stock',
  8. 'sales',
  9. 'cover',
  10. 'pics',
  11. 'is_on',
  12. 'is_recommend',
  13. 'details',
  14. ]

操作如下

1 . 把光标放到第一个$之前,按住 alt+shift,同时按住鼠标左键,向下拖动。效果如下。

2 . 按住shift+ctrl键,再点右向键->,随着点的次数增多,选中的范围不断扩大。直到选中每一行的第一个左括号。

3 . 按del键删除选中部分。

4 . 按ctrl键,再点右向键->,光标跳到第一个右括号前,放开ctrl键,输入逗号。

5 . 按住shift键,点一下end键,选中剩余的部分。

6 . 按del键删除选中部分。

7 . 将所有内容选中,放入方括号。

Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post