summaryrefslogtreecommitdiff
path: root/ext/standard/tests/strings/bug25671.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/standard/tests/strings/bug25671.phpt')
-rw-r--r--ext/standard/tests/strings/bug25671.phpt23
1 files changed, 0 insertions, 23 deletions
diff --git a/ext/standard/tests/strings/bug25671.phpt b/ext/standard/tests/strings/bug25671.phpt
deleted file mode 100644
index ac64790704..0000000000
--- a/ext/standard/tests/strings/bug25671.phpt
+++ /dev/null
@@ -1,23 +0,0 @@
---TEST--
-Bug #25671 (subarrays not copied correctly)
---FILE--
-<?php
- $arr = array(
- "This is string one.",
- "This is string two.",
- array(
- "This is another string.",
- "This is a last string."),
- "This is a last string.");
-
- echo serialize(str_replace("string", "strung", $arr)) . "\n";
- echo serialize(str_replace("string", "strung", $arr)) . "\n";
- echo serialize(str_replace(" ", "", $arr)) . "\n";
- echo serialize(str_replace(" ", "", $arr)) . "\n";
-?>
---EXPECT--
-a:4:{i:0;s:19:"This is strung one.";i:1;s:19:"This is strung two.";i:2;a:2:{i:0;s:23:"This is another string.";i:1;s:22:"This is a last string.";}i:3;s:22:"This is a last strung.";}
-a:4:{i:0;s:19:"This is strung one.";i:1;s:19:"This is strung two.";i:2;a:2:{i:0;s:23:"This is another string.";i:1;s:22:"This is a last string.";}i:3;s:22:"This is a last strung.";}
-a:4:{i:0;s:16:"Thisisstringone.";i:1;s:16:"Thisisstringtwo.";i:2;a:2:{i:0;s:23:"This is another string.";i:1;s:22:"This is a last string.";}i:3;s:18:"Thisisalaststring.";}
-a:4:{i:0;s:16:"Thisisstringone.";i:1;s:16:"Thisisstringtwo.";i:2;a:2:{i:0;s:23:"This is another string.";i:1;s:22:"This is a last string.";}i:3;s:18:"Thisisalaststring.";}
-