CakeFest 2024: The Official CakePHP Conference

hash_copy

(PHP 5 >= 5.3.0, PHP 7, PHP 8)

hash_copyCopie un contexte de hachage

Description

hash_copy(HashContext $context): HashContext

Liste de paramètres

context

Contexte de hachage, retourné par la fonction hash_init().

Valeurs de retour

Retourne une copie du contexte de hachage Hashing Context.

Historique

Version Description
7.2.0 Accepte et retourne une classe HashContext au lieu d'une ressource.

Exemples

Exemple #1 Exemple avec hash_copy()

<?php
$context
= hash_init("sha256");
hash_update($context, "The quick brown fox ");

/* copie le contexte afin de pouvoir continuer à l'utiliser */
$copy_context = hash_copy($context);

echo
hash_final($context), "\n";

hash_update($copy_context, "jumped over the lazy dog.");
echo
hash_final($copy_context), "\n";
?>

L'exemple ci-dessus va afficher :

b29d66e56ed90cce9b0165c43fedec612b60a071974d8be4513e18580d55b5bd
68b1282b91de2c054c36629cb8dd447f12f096d3e3c587978dc2248444633483

add a note

User Contributed Notes

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