Function __global->password_get_info

Definitions

sources_custom/phpstub.php

  • Returns information about the given hash.
  • Visibility: public
  • Is abstract?: No
  • Is static?: No
  • Is final?: No
  • Returns: array

Parameters

Name Type Passed by reference? Variadic? Default Set Range Description
$hash string No No required parameter N/A N/A The password hash

Returns

  • A map of info, include algo, algoName, options
  • Type: array
  • Set: N/A
  • Range: N/A

Preview

Code (PHP)

/**
 * Returns information about the given hash.
 *
 * @param  string $hash The password hash
 * @return array A map of info, include algo, algoName, options
 */

function password_get_info(string $hash) : array