summaryrefslogtreecommitdiff
path: root/ext/pcre/tests/preg_match_all_edit_basic.phpt
diff options
context:
space:
mode:
authorMáté Kocsis <kocsismate@woohoolabs.com>2020-06-24 11:34:14 +0200
committerMáté Kocsis <kocsismate@woohoolabs.com>2020-06-24 13:13:44 +0200
commitb5c7a83dcab670a5ac6070ac3774a5d221fd5ecc (patch)
treef8ed9902f65b0b31656703d33100427ad9d077ba /ext/pcre/tests/preg_match_all_edit_basic.phpt
parent187d7f05c2529779006840e34cbd9de4faabb229 (diff)
downloadphp-git-b5c7a83dcab670a5ac6070ac3774a5d221fd5ecc.tar.gz
Remove unnecessary PHPDoc-alike blocks from tests
Closes GH-5759
Diffstat (limited to 'ext/pcre/tests/preg_match_all_edit_basic.phpt')
-rw-r--r--ext/pcre/tests/preg_match_all_edit_basic.phpt6
1 files changed, 0 insertions, 6 deletions
diff --git a/ext/pcre/tests/preg_match_all_edit_basic.phpt b/ext/pcre/tests/preg_match_all_edit_basic.phpt
index 27034f90f1..02e658e941 100644
--- a/ext/pcre/tests/preg_match_all_edit_basic.phpt
+++ b/ext/pcre/tests/preg_match_all_edit_basic.phpt
@@ -2,12 +2,6 @@
Test preg_match_all() function : basic functionality
--FILE--
<?php
-/* Prototype : proto int preg_match_all(string pattern, string subject, array subpatterns [, int flags [, int offset]])
- * Description: Perform a Perl-style global regular expression match
- * Source code: ext/pcre/php_pcre.c
- * Alias to functions:
-*/
-
$string = 'Hello, world! This is a test. This is another test. \[4]. 34534 string.';
var_dump(preg_match_all('/[0-35-9]/', $string, $match1, PREG_OFFSET_CAPTURE|PREG_PATTERN_ORDER, -10)); //finds any digit that's not 4 10 digits from the end(1 match)