PHP
Referenzliste
hash_copy
Hash-Funktionen
Befehl:
resource hash_copy ( resource $context )
Parameter-Liste:
Beschreibung | |
---|---|
Von hash_init() zurückgegebener Hash-Kontext. |
Rückgabewerte:
Gibt eine Kopie des Hash-Kontexts zurück.
Beschreibung:
Dupliziert einen Hash-Kontext
Aktiv in Version:
(PHP 5 >= 5.3.0, PHP 7)
hash_copy() - Beispiel:
Eingabe:
<?php $context = hash_init("md5"); hash_update($context, "data"); /* Dupliziere Kontext um ihn weiter nutzen zu können */ $copy_context = hash_copy($context); echo hash_final($context), "\n"; hash_update($copy_context, "data"); echo hash_final($copy_context), "\n"; ?>
Ausgabe:
8d777f385d3dfec8815d20f7496026dc
511ae0b1c13f95e5f08f1a0dd3da3d93
511ae0b1c13f95e5f08f1a0dd3da3d93
Hash-Funktionen