perl如何导入实用程序文件?
在perl中,如何包含util文件?例如,我有一个文件“util.pl”,其中有一个函数。然后我想包含/导入该文件,该怎么做?
main.pl
use strict;
use warnings;
main();
sub main{
my_funtion("start processing feed");
}
---------
util.pl
use strict;
use warnings;
sub my_funtion {
}
In the perl, how to include a util file ? for example, I have a file "util.pl" , inside which has a function. then I want to include / import that file, how to do it ?
main.pl
use strict;
use warnings;
main();
sub main{
my_funtion("start processing feed");
}
---------
util.pl
use strict;
use warnings;
sub my_funtion {
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于您需要的 pl 脚本。
靠近
main.pl
脚本的顶部(use strict
之后)。使用
.pm
文件、包和use
语句可能“更好”。但上面的内容已经解决了你提出的问题。For a pl script you need.
Near the top (after
use strict
) of yourmain.pl
script.Using
.pm
files, packages, and theuse
statement is probably "better". But the above will solve the question you asked.