예제 #1
0
 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);
 }