美文网首页
phpstorm修改php文件头模板

phpstorm修改php文件头模板

作者: jimxu | 来源:发表于2017-10-23 11:28 被阅读182次

    phpstorm设置新建php文件时的头文件,一个帅气的头文件是不是让你码字的心情都更好了呢

    20170712149985488177380.png

    Editor/ File and Code Templates / includes / PHP File Header

    20170621149803412611540.png

    可以在模板中使用一下变量:

    • ${FILE_NAME}:current file name
    • ${USER}:current user system login name
    • ${DATE}:current system date
    • ${TIME}:current system time
    • ${YEAR}:current year
    • ${MONTH}:current month
    • ${DAY}:current day of the month
    • ${HOUR}:current hour
    • ${MINUTE}:current minute
    • ${PRODUCT_NAME}:current IDE name
    • ${PROJECT_NAME}:current project name

    你也可以自定义变量

    #set( $MAIL = "xxx@test.com" )
    

    然后就可以在模板中使用${MAIL}变量了

    相关文章

      网友评论

          本文标题:phpstorm修改php文件头模板

          本文链接:https://www.haomeiwen.com/subject/ncnouxtx.html