如何创建 theos 自定义变量?
How to create theos custom variables?
我想为 theos 创建自定义变量。例如 @@DATECREATED@@ 打印我的调整欺骗的当前日期(我太无聊手动编辑它了:D)
像@@FULLPROJECTNAME@@一样在控件和 Makefile 中打印出调整名称...
编辑:我通过将此添加到我的 nic.pl:
use DateTime;
$NIC->variable("DATECREATED") = DateTime->now->strftime('%d/%m/%Y');
是否可以在不编辑原件的情况下做到这一点nic.pl?
感谢您的建议!
我已经找到解决办法了!
我必须将此代码放在我的 theos 模板中的 control.pl 中:
use DateTime;
NIC->variable("DATECREATED") = DateTime->now->strftime('%d/%m/%Y');
我想为 theos 创建自定义变量。例如 @@DATECREATED@@ 打印我的调整欺骗的当前日期(我太无聊手动编辑它了:D)
像@@FULLPROJECTNAME@@一样在控件和 Makefile 中打印出调整名称...
编辑:我通过将此添加到我的 nic.pl:
use DateTime;
$NIC->variable("DATECREATED") = DateTime->now->strftime('%d/%m/%Y');
是否可以在不编辑原件的情况下做到这一点nic.pl?
感谢您的建议!
我已经找到解决办法了!
我必须将此代码放在我的 theos 模板中的 control.pl 中:
use DateTime;
NIC->variable("DATECREATED") = DateTime->now->strftime('%d/%m/%Y');