Handler::__construct PHP 메소드

__construct() 공개 메소드

Constructor
public __construct ( )
    function __construct()
    {
        parent::__construct();
    }

Usage Example

예제 #1
0
 public function __construct($type = USE_ECHO, $separator = self::DEFAULT_SEPARATOR, $expandArrays = true)
 {
     parent::__construct(null);
     $this->_type = $type;
     $this->_separator = $separator;
     $this->_expandArrays = $expandArrays;
 }
All Usage Examples Of Handler::__construct