PHP Velho Oeste 2024

sodium_bin2hex

(PHP 7 >= 7.2.0)

sodium_bin2hexEncode to hexadecimal

Descrierea

sodium_bin2hex ( string $string ) : string

Avertizare

Această funcție nu este documentată în prezent; este disponibilă numai lista sa de argumente.

Parametri

string

Valorile întoarse

add a note add a note

User Contributed Notes 1 note

up
0
admin at manomite dot net
6 years ago
<?php

$string
= "my-password";

echo
sodium_bin2hex ( $string );

?>
To Top