如何修改 PhpStorm 預設的 Class Template

如何修改 PhpStorm 預設的 Class Template,第1张

当使用 PhpStorm 建立 class 时,预设会产生 Created by PhpStorm 的注解,并包含 作者 、 日期 、 时间 等资讯,有的人喜欢,有的人不喜欢,若你不希望每次建立 class 时都有这个档头,可以自行修改;除此之外,在 PHP 7 为了让强行别检查发挥作用,我们会在一开始 declare(strict_types = 1),这也可以直接设定在 class template,以後只要建立新的 class,都会自动加上宣告。

Motivation

预设在 PhpStorm 建立 class 时,都会在档头加上 Created by PhpStorm 的注解,很多人建立 class 後的第一件事情,就是去删除这些注解,事实上我们可以透过修改 PhpStorm 的 class template,移除这些设定。

Version

PHP 7.0.8

PhpStorm 2016.2.1

移除注解

PhpStorm ->Preferences ->Editor ->File and Code Templates ->PHP Class

我们发现每个 class template 都有 #parse("PHP File Header.php") 。

PhpStorm ->Preferences ->Editor ->File and Code Templates ->includes ->PHP File Header

切换到 includes 的 PHP File Header ,我们可以看到预设的注解就是在此,若你不喜欢这些注解,可以全部删除後存档。

宣告 Strict Type

PHP 7 增加了 scalar type hint 与 return type,不过为了相容於过去 PHP 弱型别传统,预设并没有启动型别检查,必须自己加上 declare(strict_type = 1) 之後,PHP 与 PhpStorm 的 Code Inspection 才会根据 type hint 与 return type 检查型别。 1 1 关於 PhpStorm 的 Code Inspection,详细请参考 如何在 PhpStorm 使用 Code Inspection?

目前 PHP 7 并没有提供全域的 php.ini 设定,必须自己在每个 .php 加上设定,很麻烦也容易忘记,若能设定在 class template 内,则以後新增 class 都会有 declare(strict_type = 1) 。

PhpStorm ->Preferences ->Editor ->File and Code Templates ->includes ->PHP File Header

删除预设注解後,改加上 declare(strict_type = 1) 。

以後新增 class,预设注解不见了,且自动加上 declare(strict_type = 1) 。

Conclusion

除了移除预设注解与宣告 strict types 外,如一些需靠 Laravel artisan 建立的 controller、unit test …,事实上也可以新增一个 template,直接使用 PhpStorm 来新增。

phpstorm 是编辑器,微擎框架是php 框架,采用thinkphp 做的二次开发。他的模板一般是tpl 结尾的,当然html 也可以,这个可以指定。要引入模板,只需要赋值到文件夹即可。然后通过调用模板的路径即可引入。

引入模板只要指定路径即可。这个和编辑器没有关系。直接复制到项目路径就行。不需要向java 那样引入资源一样引入。


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/tougao/11990929.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-20
下一篇 2023-05-20

发表评论

登录后才能评论

评论列表(0条)

保存