PHP Doku:: Dupliziert einen Hash-Kontext - function.hash-copy.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzKryptografische ErweiterungenHASH-ErweiterungHash-Funktionenhash_copy

Ein Service von Reinhard Neidl - Webprogrammierung.

Hash-Funktionen

<<hash_algos

hash_file>>

hash_copy

(PHP 5 >= 5.3.0)

hash_copyDupliziert einen Hash-Kontext

Beschreibung

resource hash_copy ( resource $context )

Parameter-Liste

context

Von hash_init() zurückgegebener Hash-Kontext

Rückgabewerte

Gibt eine Kopie des Hash-Kontexts zurück.

Beispiele

Beispiel #1 hash_copy()-Beispiel

<?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";
?>

Das oben gezeigte Beispiel erzeugt folgende Ausgabe:

8d777f385d3dfec8815d20f7496026dc
511ae0b1c13f95e5f08f1a0dd3da3d93


Keine BenutzerBeiträge.
- Beiträge aktualisieren...



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)