International PHP Conference Berlin 2025

crypt_preferred_method

(PECL xpass >= 1.1.0)

crypt_preferred_methodGet the prefix of the preferred hash method

Açıklama

crypt_preferred_method(): ?string

Get the prefix of the preferred hash method.

Bağımsız Değişkenler

Bu işlevin bağımsız değişkeni yoktur.

Dönen Değerler

Returns a string with the prefix, or null if error.

Örnekler

Örnek 1 A crypt_preferred_method() example

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

Yukarıdaki örneğin çıktısı:

string(3) "$y$"

Ayrıca Bakınız

add a note

User Contributed Notes

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