\

Namespaces

hhu
nre

Classes

PHPMailer PHPMailer - PHP email creation and transport class.
phpmailerException PHPMailer exception handler
SMTP PHPMailer RFC821 SMTP email transport class.

Constants

DS

DS

PASSWORD_BCRYPT

PASSWORD_BCRYPT

PASSWORD_DEFAULT

PASSWORD_DEFAULT

ROOT

ROOT

Functions

__autoload()

__autoload(string  $classname) 

Fall back to traditional autoload for old PHP versions

Parameters

string $classname

The name of the class to load

password_get_info()

password_get_info(string  $hash) : array

Get information about the password hash. Returns an array of the information that was used to generate the password hash.

array( 'algo' => 1, 'algoName' => 'bcrypt', 'options' => array( 'cost' => 10, ), )

Parameters

string $hash

The password hash to extract info from

Returns

array —

The array of information about the hash.

password_hash()

password_hash(string  $password, integer  $algo, array  $options = array()) : string|false

Hash the password using the specified algorithm

Parameters

string $password

The password to hash

integer $algo

The algorithm to use (Defined by PASSWORD_* constants)

array $options

The options for the algorithm to use

Returns

string|false —

The hashed password, or false on error.

password_needs_rehash()

password_needs_rehash(string  $hash, integer  $algo, array  $options = array()) : boolean

Determine if the password hash needs to be rehashed according to the options provided

If the answer is true, after validating the password using password_verify, rehash it.

Parameters

string $hash

The hash to test

integer $algo

The algorithm used for new password hashes

array $options

The options array passed to password_hash

Returns

boolean —

True if the password needs to be rehashed.

password_verify()

password_verify(string  $password, string  $hash) : boolean

Verify a password against a hash using a timing attack resistant approach

Parameters

string $password

The password to verify

string $hash

The hash to verify against

Returns

boolean —

If the password matches the hash

PHPMailerAutoload()

PHPMailerAutoload(string  $classname) 

PHPMailer SPL autoloader.

Parameters

string $classname

The name of the class to load