有没有一种方法可以创建一个实时模板,它可以通过在 phpStorm 中按“t”+ TAB 来给出当前时间戳:
我想在创建 DocBlocks 时执行此操作,因为我喜欢跟踪代码中的更改,例如:
/**
* This is the info for the doc.
* User: sankalp
* Date: 3/8/13
* Time: 10:58 AM <- I want the implementation here.
* @author : sankalpsingha@gmail.com
*/
public function actionSomething(){
#some code here...
}
那么有没有办法实现这一点?还是我必须使用“查看观看并生成自己的时间戳”方法?