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 那样引入资源一样引入。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)