Horde_Crypt::__construct PHP Метод

__construct() публичный Метод

Constructor.
public __construct ( array $params = [] )
$params array Configuration parameters: - email_charset: (string) The default email charset.
    public function __construct(array $params = array())
    {
        $this->_params = array_merge(array('email_charset' => null), $params);
    }

Usage Example

Пример #1
0
 /**
  * Constructor.
  *
  * @param array $params  Configuration parameters:
  *   - backends: (array) The explicit list of backend drivers
  *               (Horde_Crypt_Pgp_Backend objects) to use.
  *   - program: (string) The path to the GnuPG binary.
  *   - temp: (string) Location of temporary directory.
  */
 public function __construct($params = array())
 {
     parent::__construct($params);
 }
All Usage Examples Of Horde_Crypt::__construct