summaryrefslogtreecommitdiff
path: root/ext/standard/tests/reg/005.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/standard/tests/reg/005.phpt')
-rw-r--r--ext/standard/tests/reg/005.phpt20
1 files changed, 0 insertions, 20 deletions
diff --git a/ext/standard/tests/reg/005.phpt b/ext/standard/tests/reg/005.phpt
deleted file mode 100644
index 78c0a0912a..0000000000
--- a/ext/standard/tests/reg/005.phpt
+++ /dev/null
@@ -1,20 +0,0 @@
---TEST--
-Test Regular expression register support in ereg
---POST--
---GET--
---FILE--
-<?php $a="This is a nice and simple string";
- echo ereg(".*(is).*(is).*",$a,$registers);
- echo "\n";
- echo $registers[0];
- echo "\n";
- echo $registers[1];
- echo "\n";
- echo $registers[2];
- echo "\n";
-?>
---EXPECT--
-32
-This is a nice and simple string
-is
-is