summaryrefslogtreecommitdiff
path: root/ext/hash/tests/hash_update_file.phpt
blob: bedaa73879892d3bad5b282446cf7e0b197dac3b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
--TEST--
Hash: hash_update_file() test
--CREDITS--
marcosptf - <marcosptf@yahoo.com.br> - @phpsp - sao paulo - br
--FILE--
<?php
$filePath = __DIR__ . DIRECTORY_SEPARATOR . 'hash_update_stream.txt';
file_put_contents($filePath, 'The quick brown fox jumped over the lazy dog.');

$ctx = hash_init('md5');
var_dump(hash_update_file($ctx, $filePath));
echo hash_final($ctx);
?>
--EXPECT--
bool(true)
5c6ffbdd40d9556b73a21e63c3e0e904
--CLEAN--
<?php
unlink(__DIR__ . DIRECTORY_SEPARATOR . 'hash_update_stream.txt');
?>