1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178
|
--TEST--
show information about extension
--EXTENSIONS--
session
--SKIPIF--
<?php
include "skipif.inc";
if (PCRE_JIT_SUPPORT == false) {
die ("skip not pcre jit support builtin");
}
?>
--INI--
date.timezone=UTC
--FILE--
<?php
$php = getenv('TEST_PHP_EXECUTABLE_ESCAPED');
var_dump(`$php -n --re unknown`);
var_dump(`$php -n --re ""`);
var_dump(`$php -n --re pcre`);
echo "Done\n";
?>
--EXPECTF--
string(46) "Exception: Extension "unknown" does not exist
"
string(39) "Exception: Extension "" does not exist
"
string(%d) "Extension [ <persistent> extension #%d pcre version %s ] {
- INI {
Entry [ pcre.backtrack_limit <ALL> ]
Current = '%d'
}
Entry [ pcre.recursion_limit <ALL> ]
Current = '%d'
}
Entry [ pcre.jit <ALL> ]
Current = '%d'
}
}
- Constants [19] {
Constant [ <persistent> int PREG_PATTERN_ORDER ] { 1 }
Constant [ <persistent> int PREG_SET_ORDER ] { 2 }
Constant [ <persistent> int PREG_OFFSET_CAPTURE ] { 256 }
Constant [ <persistent> int PREG_UNMATCHED_AS_NULL ] { 512 }
Constant [ <persistent> int PREG_SPLIT_NO_EMPTY ] { 1 }
Constant [ <persistent> int PREG_SPLIT_DELIM_CAPTURE ] { 2 }
Constant [ <persistent> int PREG_SPLIT_OFFSET_CAPTURE ] { 4 }
Constant [ <persistent> int PREG_GREP_INVERT ] { 1 }
Constant [ <persistent> int PREG_NO_ERROR ] { 0 }
Constant [ <persistent> int PREG_INTERNAL_ERROR ] { 1 }
Constant [ <persistent> int PREG_BACKTRACK_LIMIT_ERROR ] { 2 }
Constant [ <persistent> int PREG_RECURSION_LIMIT_ERROR ] { 3 }
Constant [ <persistent> int PREG_BAD_UTF8_ERROR ] { 4 }
Constant [ <persistent> int PREG_BAD_UTF8_OFFSET_ERROR ] { 5 }
Constant [ <persistent> int PREG_JIT_STACKLIMIT_ERROR ] { 6 }
Constant [ <persistent> string PCRE_VERSION ] { %s }
Constant [ <persistent> int PCRE_VERSION_MAJOR ] { %d }
Constant [ <persistent> int PCRE_VERSION_MINOR ] { %d }
Constant [ <persistent> bool PCRE_JIT_SUPPORT ] { %d }
}
- Functions {
Function [ <internal:pcre> function preg_match ] {
- Parameters [5] {
Parameter #0 [ <required> string $pattern ]
Parameter #1 [ <required> string $subject ]
Parameter #2 [ <optional> &$matches = null ]
Parameter #3 [ <optional> int $flags = 0 ]
Parameter #4 [ <optional> int $offset = 0 ]
}
- Return [ int|false ]
}
Function [ <internal:pcre> function preg_match_all ] {
- Parameters [5] {
Parameter #0 [ <required> string $pattern ]
Parameter #1 [ <required> string $subject ]
Parameter #2 [ <optional> &$matches = null ]
Parameter #3 [ <optional> int $flags = 0 ]
Parameter #4 [ <optional> int $offset = 0 ]
}
- Return [ int|false ]
}
Function [ <internal:pcre> function preg_replace ] {
- Parameters [5] {
Parameter #0 [ <required> array|string $pattern ]
Parameter #1 [ <required> array|string $replacement ]
Parameter #2 [ <required> array|string $subject ]
Parameter #3 [ <optional> int $limit = -1 ]
Parameter #4 [ <optional> &$count = null ]
}
- Return [ array|string|null ]
}
Function [ <internal:pcre> function preg_filter ] {
- Parameters [5] {
Parameter #0 [ <required> array|string $pattern ]
Parameter #1 [ <required> array|string $replacement ]
Parameter #2 [ <required> array|string $subject ]
Parameter #3 [ <optional> int $limit = -1 ]
Parameter #4 [ <optional> &$count = null ]
}
- Return [ array|string|null ]
}
Function [ <internal:pcre> function preg_replace_callback ] {
- Parameters [6] {
Parameter #0 [ <required> array|string $pattern ]
Parameter #1 [ <required> callable $callback ]
Parameter #2 [ <required> array|string $subject ]
Parameter #3 [ <optional> int $limit = -1 ]
Parameter #4 [ <optional> &$count = null ]
Parameter #5 [ <optional> int $flags = 0 ]
}
- Return [ array|string|null ]
}
Function [ <internal:pcre> function preg_replace_callback_array ] {
- Parameters [5] {
Parameter #0 [ <required> array $pattern ]
Parameter #1 [ <required> array|string $subject ]
Parameter #2 [ <optional> int $limit = -1 ]
Parameter #3 [ <optional> &$count = null ]
Parameter #4 [ <optional> int $flags = 0 ]
}
- Return [ array|string|null ]
}
Function [ <internal:pcre> function preg_split ] {
- Parameters [4] {
Parameter #0 [ <required> string $pattern ]
Parameter #1 [ <required> string $subject ]
Parameter #2 [ <optional> int $limit = -1 ]
Parameter #3 [ <optional> int $flags = 0 ]
}
- Return [ array|false ]
}
Function [ <internal:pcre> function preg_quote ] {
- Parameters [2] {
Parameter #0 [ <required> string $str ]
Parameter #1 [ <optional> ?string $delimiter = null ]
}
- Return [ string ]
}
Function [ <internal:pcre> function preg_grep ] {
- Parameters [3] {
Parameter #0 [ <required> string $pattern ]
Parameter #1 [ <required> array $array ]
Parameter #2 [ <optional> int $flags = 0 ]
}
- Return [ array|false ]
}
Function [ <internal:pcre> function preg_last_error ] {
- Parameters [0] {
}
- Return [ int ]
}
Function [ <internal:pcre> function preg_last_error_msg ] {
- Parameters [0] {
}
- Return [ string ]
}
}
}
"
Done
|