0
点赞
收藏
分享

微信扫一扫

Mac Netbeans 8.2 设置author

我是小小懒 2022-03-15 阅读 44


1、工具(T) ---> 模板 (T)

Mac Netbeans 8.2 设置author_html

2、点击设置

编辑user properties

author=jiangxingqi
email=xxxxx@126.com

3、选择文件类型,点击在编辑器中打开

${doctype}
<!--
@author ${author}
-->
<html>
<head>
<meta charset="${project.encoding}">
<title></title>
</head>
<body>
<?php
// put your code here
?>
</body>
</html>

4、新建一个phpweb页面,可以看到author信息已经自动设置好了

<!DOCTYPE html>
<!--
@author jiangxingqi
-->
<html>
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
<?php
// put your code here
?>
</body>
</html>

完成


举报

相关推荐

0 条评论