summaryrefslogtreecommitdiff
path: root/ext/hash/tests/hash_file_basic1.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/hash/tests/hash_file_basic1.phpt')
-rw-r--r--ext/hash/tests/hash_file_basic1.phpt10
1 files changed, 5 insertions, 5 deletions
diff --git a/ext/hash/tests/hash_file_basic1.phpt b/ext/hash/tests/hash_file_basic1.phpt
index 2e088cebe6..0ea91d5a32 100644
--- a/ext/hash/tests/hash_file_basic1.phpt
+++ b/ext/hash/tests/hash_file_basic1.phpt
@@ -1,5 +1,5 @@
--TEST--
-Test hash_file() function : basic functionality
+Test hash_file() function : basic functionality
--SKIPIF--
<?php extension_loaded('hash') or die('skip: hash extension not loaded.'); ?>
--FILE--
@@ -8,7 +8,7 @@ Test hash_file() function : basic functionality
/* Prototype : string hash_file ( string algo, string filename [, bool raw_output] )
* Description: Generate a hash value using the contents of a given file
* Source code: ext/hash/hash.c
- * Alias to functions:
+ * Alias to functions:
*/
echo "*** Testing hash_file() : basic functionality ***\n";
@@ -18,9 +18,9 @@ $file = dirname(__FILE__) . "hash_file.txt";
if (($fp = fopen( $file, "w+")) == FALSE) {
echo "Cannot create file ($file)";
exit;
-}
+}
-/* Writing into file */
+/* Writing into file */
$content = "This is a sample string used to test the hash_file function with various hashing algorithms";
if (is_writable($file)) {
if (fwrite($fp, $content) === FALSE) {
@@ -29,7 +29,7 @@ if (is_writable($file)) {
}
}
-// close the file
+// close the file
fclose($fp);
echo "adler32: " . hash_file('adler32', $file) . "\n";