Skip to content

Commit d94136f

Browse files
committed
- Remove unused blocks
1 parent bd29f37 commit d94136f

155 files changed

Lines changed: 0 additions & 315 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

ext/ereg/tests/001.phpt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
--TEST--
22
RegReplace test 1
3-
--POST--
4-
--GET--
53
--FILE--
64
<?php $a="abc123";
75
echo ereg_replace("123","def",$a)?>

ext/ereg/tests/002.phpt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
--TEST--
22
RegReplace test 2
3-
--POST--
4-
--GET--
53
--FILE--
64
<?php $a="abc123";
75
echo ereg_replace("123","",$a)?>

ext/ereg/tests/003.phpt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
--TEST--
22
ereg_replace single-quote test
3-
--POST--
4-
--GET--
53
--FILE--
64
<?php $a="\\'test";
75
echo ereg_replace("\\\\'","'",$a)

ext/ereg/tests/004.phpt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
--TEST--
22
simple ereg test
3-
--POST--
4-
--GET--
53
--FILE--
64
<?php $a="This is a nice and simple string";
75
if (ereg(".*nice and simple.*",$a)) {

ext/ereg/tests/005.phpt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
--TEST--
22
Test Regular expression register support in ereg
3-
--POST--
4-
--GET--
53
--FILE--
64
<?php $a="This is a nice and simple string";
75
echo ereg(".*(is).*(is).*",$a,$registers);

ext/ereg/tests/006.phpt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
--TEST--
22
Test ereg_replace of start-of-line
3-
--POST--
4-
--GET--
53
--FILE--
64
<?php $a="This is a nice and simple string";
75
echo ereg_replace("^This","That",$a);

ext/ereg/tests/007.phpt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
--TEST--
22
Test empty result buffer in reg_replace
3-
--POST--
4-
--GET--
53
--FILE--
64
<?php
75
$a="abcd";

ext/ereg/tests/008.phpt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
--TEST--
22
Test back-references in regular expressions
3-
--POST--
4-
--GET--
53
--FILE--
64
<?php
75
echo ereg_replace("([a-z]*)([-=+|]*)([0-9]+)","\\3 \\1 \\2\n","abc+-|=123");

ext/ereg/tests/009.phpt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
--TEST--
22
Test split()
3-
--POST--
4-
--GET--
53
--FILE--
64
<?php
75
$a=split("[[:space:]]","this is a

ext/ereg/tests/010.phpt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
--TEST--
22
Long back references
3-
--POST--
4-
--GET--
53
--FILE--
64
<?php $a="abc122222222223";
75
echo ereg_replace("1(2*)3","\\1def\\1",$a)?>

0 commit comments

Comments
 (0)