Perl語言編程不安全語法檢查可用下面兩個命令:
編程
#!/usr/bin/perl -w
或者:
安全
use warnings;
雖然二者均可以提示不安全的語法, 可是仍是有差異的, Perl幫助文檔裏面寫到:
spa
The warnings pragma is a replacement for the command line flag -w, but the pragma is limited to the enclosing block, while the flag is global.code
可見前者的做用範圍是全局, 然後者可由下面語句提早終結:文檔
no warnings;