summaryrefslogtreecommitdiff
path: root/ext/standard/tests/file/file_error.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/standard/tests/file/file_error.phpt')
-rw-r--r--ext/standard/tests/file/file_error.phpt4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/standard/tests/file/file_error.phpt b/ext/standard/tests/file/file_error.phpt
index 31189672d3..fdf02fe109 100644
--- a/ext/standard/tests/file/file_error.phpt
+++ b/ext/standard/tests/file/file_error.phpt
@@ -2,7 +2,7 @@
Test file() function : error conditions
--FILE--
<?php
-/*
+/*
Prototype: array file ( string filename [,int use-include_path [,resource context]] );
Description: Reads entire file into an array
Returns the file in an array
@@ -18,7 +18,7 @@ var_dump( file($filename, $filename, $filename, $filename) ); // more than expe
var_dump( file($filename, "INCORRECT_FLAG", NULL) ); // Incorrect flag
var_dump( file($filename, 10, NULL) ); // Incorrect flag
-var_dump( file("temp.tmp") ); // non existing filename
+var_dump( file("temp.tmp") ); // non existing filename
fclose($file_handle);
echo "\n--- Done ---";