コード例 #1
0
ファイル: unique_password.inc.php プロジェクト: tv13/bambitav
 function __construct($value = null)
 {
     $this->letters = range('A', 'Z');
     $this->digits = range(1, 9);
     parent::__construct($value);
 }
コード例 #2
0
ファイル: phone.inc.php プロジェクト: tv13/bambitav
 function __construct()
 {
     parent::__construct();
 }
コード例 #3
0
ファイル: url.inc.php プロジェクト: tv13/bambitav
 function __construct($value = null)
 {
     $this->auto_protocol = true;
     parent::__construct($value);
 }