summaryrefslogtreecommitdiff
path: root/ext/standard/tests/array/array_fill_variation3.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/standard/tests/array/array_fill_variation3.phpt')
-rw-r--r--ext/standard/tests/array/array_fill_variation3.phpt14
1 files changed, 7 insertions, 7 deletions
diff --git a/ext/standard/tests/array/array_fill_variation3.phpt b/ext/standard/tests/array/array_fill_variation3.phpt
index 96531197ea..9c1857c61d 100644
--- a/ext/standard/tests/array/array_fill_variation3.phpt
+++ b/ext/standard/tests/array/array_fill_variation3.phpt
@@ -3,7 +3,7 @@ Test array_fill() function : usage variations - unexpected values for 'val' arg
--FILE--
<?php
/* Prototype : array array_fill(int $start_key, int $num, mixed $val)
- * Description: Create an array containing num elements starting with index start_key each initialized to val
+ * Description: Create an array containing num elements starting with index start_key each initialized to val
* Source code: ext/standard/array.c
*/
@@ -13,7 +13,7 @@ Test array_fill() function : usage variations - unexpected values for 'val' arg
echo "*** Testing array_fill() : usage variations ***\n";
-// Initialise function arguments not being substituted
+// Initialise function arguments not being substituted
$start_key = 0;
$num = 2;
@@ -32,22 +32,22 @@ class test
}
-//array of different values for 'val' argument
+//array of different values for 'val' argument
$values = array(
// empty string
/* 1 */ "",
'',
- // objects
+ // objects
/* 3 */ new test(),
- // undefined variable
+ // undefined variable
@$undefined_var,
- // unset variable
+ // unset variable
/* 5 */ @$unset_var,
);
-// loop through each element of the array for 'val' argument
+// loop through each element of the array for 'val' argument
// check the working of array_fill()
echo "--- Testing array_fill() with different values for 'val' argument ---\n";
$counter = 1;