This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
date_default_timezone_set('Asia/Tokyo'); | |
/* | |
* 「時計」クラス | |
*/ | |
class Timepiece extends DateTime { | |
static protected $default_format_string = 'Y-m-d H:i:s'; | |
protected $format_string = false; | |
/* | |
* デフォルトのフォーマット文字列を設定する |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Hoge | |
def hoge | |
p "hoge" | |
end | |
end | |
block1 = Proc.new { | |
extend Hoge | |
hoge | |
} | |
block2 = Proc.new { |
NewerOlder