crypt_preferred_method

(PECL xpass >= 1.1.0)

crypt_preferred_methodGet the prefix of the preferred hash method

Descrizione

crypt_preferred_method(): ?string

Get the prefix of the preferred hash method.

Elenco dei parametri

Questa funzione non contiene parametri.

Valori restituiti

Returns a string with the prefix, or null in case of an error.

Esempi

Example #1 A crypt_preferred_method() example

<?php
var_dump
(crypt_preferred_method());
?>

Il precedente esempio visualizzerà:

string(3) "$y$"

Vedere anche:

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top