「利用者:Dsk/memo/perl」の版間の差分

提供: dsk's note
移動: 案内検索
10行目: 10行目:
 
</syntaxhighlight>
 
</syntaxhighlight>
  
コンストラクタ
+
===ファイル操作===
[http://d.hatena.ne.jp/perlcodesample/20090317/1237125522 コンストラクタの作成]
+
*Path::Class
 
+
*File::Slurp - Simple and Efficient Reading/Writing/Modifying of Complete Files
[http://itpro.nikkeibp.co.jp/article/COLUMN/20071011/284280/  Part1 正しいPerl/CGIの書き方]
+
===Link===
 +
*[http://d.hatena.ne.jp/perlcodesample/20090317/1237125522 コンストラクタの作成]
 +
*[http://itpro.nikkeibp.co.jp/article/COLUMN/20071011/284280/  Part1 正しいPerl/CGIの書き方]

2015年5月6日 (水) 05:27時点における版

$rec = {
    NAME  => "Jason",
    AGE   => 23,
    PEERS => [ "Norbert", "Rhys", "Phineas"],
};
 
$rec->{NAME}
@{ $rec->{TEST} }

ファイル操作

  • Path::Class
  • File::Slurp - Simple and Efficient Reading/Writing/Modifying of Complete Files

Link