在我的Perl腳本中,我有幾百次調用子程序,有許多不同的參數集,因爲發送的唯一值是與默認值不同的值。 (不言而喻,排列和組合的數量非常大)爲了使它更穩健,我想對參數進行一些檢查。這裏是我的子程序的縮小版本(實際版本有非常具體的,有時冗長的名字幾十個參數): # Obtain any parameters that differ from the defaults and send for proc
最近我使用奇爾卡特Perl庫發送電子郵件 http://www.example-code.com/perl/smtp_simpleSend.asp 當我創建新的對象 use chilkat();
# The mailman object is used for sending and receiving email.
$mailman = new chilkat::CkMailMan();
我想用perl編寫一個守護進程。現在,這個守護進程具有下面的代碼 sub b {
my $data;
if (some condition) {
$data->{"endsmeet"} = 1;
} else {
$data->{"endsmeet"} = 2;
}
my $newData = a($data);
}