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
|
<?php /** * pcre extension Constant Exceptions dictionary for PHP_CompatInfo 1.9.0b2 or better * * PHP versions 5 * * @category PHP * @package PHP_CompatInfo * @author Davey Shafik <davey@php.net> * @author Laurent Laville <pear@laurent-laville.org> * @license http://www.opensource.org/licenses/bsd-license.php BSD * @version CVS: $Id: pcre_const_exceptions.php,v 1.1 2008/12/28 19:54:40 farell Exp $ * @link http://pear.php.net/package/PHP_CompatInfo * @link http://www.php.net/manual/en/pcre.constants.php * @since version 1.9.0 (2009-01-19) */
$constant_exceptions['pcre'] = array ( 'PREG_OFFSET_CAPTURE' => array ( 'init' => '4.3.0', 'name' => 'PREG_OFFSET_CAPTURE', ), 'PREG_SPLIT_DELIM_CAPTURE' => array ( 'init' => '4.0.5', 'name' => 'PREG_SPLIT_DELIM_CAPTURE', ), 'PREG_SPLIT_OFFSET_CAPTURE' => array ( 'init' => '4.3.0', 'name' => 'PREG_SPLIT_OFFSET_CAPTURE', ), 'PREG_NO_ERROR' => array ( 'init' => '5.2.0', 'name' => 'PREG_NO_ERROR', ), 'PREG_INTERNAL_ERROR' => array ( 'init' => '5.2.0', 'name' => 'PREG_INTERNAL_ERROR', ), 'PREG_BACKTRACK_LIMIT_ERROR' => array ( 'init' => '5.2.0', 'name' => 'PREG_BACKTRACK_LIMIT_ERROR', ), 'PREG_RECURSION_LIMIT_ERROR' => array ( 'init' => '5.2.0', 'name' => 'PREG_RECURSION_LIMIT_ERROR', ), 'PREG_BAD_UTF8_ERROR' => array ( 'init' => '5.2.0', 'name' => 'PREG_BAD_UTF8_ERROR', ), 'PREG_BAD_UTF8_OFFSET_ERROR' => array ( 'init' => '5.3.0', 'name' => 'PREG_BAD_UTF8_OFFSET_ERROR', ), 'PCRE_VERSION' => array ( 'init' => '5.2.4', 'name' => 'PCRE_VERSION', ), ); ?>
|