summaryrefslogtreecommitdiff
path: root/ext/standard/tests/array/array_count_values2.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/standard/tests/array/array_count_values2.phpt')
-rw-r--r--ext/standard/tests/array/array_count_values2.phpt24
1 files changed, 12 insertions, 12 deletions
diff --git a/ext/standard/tests/array/array_count_values2.phpt b/ext/standard/tests/array/array_count_values2.phpt
index 8dc9b23125..549b77d9f2 100644
--- a/ext/standard/tests/array/array_count_values2.phpt
+++ b/ext/standard/tests/array/array_count_values2.phpt
@@ -2,18 +2,18 @@
basic array_count_values test
--FILE--
<?php
-$array1 = array(1,
- "hello",
- 1,
- "world",
- "hello",
- "",
- "rabbit",
- "foo",
- "Foo",
- TRUE,
- FALSE,
- NULL,
+$array1 = array(1,
+ "hello",
+ 1,
+ "world",
+ "hello",
+ "",
+ "rabbit",
+ "foo",
+ "Foo",
+ TRUE,
+ FALSE,
+ NULL,
0);
var_dump(array_count_values($array1));
?>