Handler::__construct PHP Method

__construct() public method

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