summaryrefslogtreecommitdiff
path: root/ext/standard/tests/array/bug14580.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/standard/tests/array/bug14580.phpt')
-rw-r--r--ext/standard/tests/array/bug14580.phpt8
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/standard/tests/array/bug14580.phpt b/ext/standard/tests/array/bug14580.phpt
index 1cf27f22d6..8f4c7d5bd3 100644
--- a/ext/standard/tests/array/bug14580.phpt
+++ b/ext/standard/tests/array/bug14580.phpt
@@ -2,10 +2,10 @@
Bug #14580 (key() not binary safe)
--FILE--
<?php
- $arr = array ("foo\0bar" => "foo\0bar");
- $key = key($arr);
- echo strlen($key), ': ';
- echo urlencode($key), "\n";
+ $arr = array ("foo\0bar" => "foo\0bar");
+ $key = key($arr);
+ echo strlen($key), ': ';
+ echo urlencode($key), "\n";
?>
--EXPECT--
7: foo%00bar