1999-05-21 21:17:23 +08:00
|
|
|
/*
|
|
|
|
+----------------------------------------------------------------------+
|
2004-01-09 01:33:29 +08:00
|
|
|
| PHP Version 5 |
|
1999-05-21 21:17:23 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2012-01-01 21:15:04 +08:00
|
|
|
| Copyright (c) 1997-2012 The PHP Group |
|
1999-05-21 21:17:23 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2006-01-01 20:51:34 +08:00
|
|
|
| This source file is subject to version 3.01 of the PHP license, |
|
2000-02-15 22:24:46 +08:00
|
|
|
| that is bundled with this package in the file LICENSE, and is |
|
2003-06-11 04:04:29 +08:00
|
|
|
| available through the world-wide-web at the following url: |
|
2006-01-01 20:51:34 +08:00
|
|
|
| http://www.php.net/license/3_01.txt |
|
2000-02-15 22:24:46 +08:00
|
|
|
| If you did not receive a copy of the PHP license and are unable to |
|
|
|
|
| obtain it through the world-wide-web, please send a note to |
|
|
|
|
| license@php.net so we can mail you a copy immediately. |
|
1999-05-21 21:17:23 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2002-05-14 01:28:38 +08:00
|
|
|
| Author: Andrei Zmievski <andrei@php.net> |
|
1999-05-21 21:17:23 +08:00
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
*/
|
2000-02-15 22:24:46 +08:00
|
|
|
|
1999-05-21 21:17:23 +08:00
|
|
|
/* $Id$ */
|
|
|
|
|
2000-07-03 07:46:51 +08:00
|
|
|
#ifndef PHP_PCRE_H
|
|
|
|
#define PHP_PCRE_H
|
1999-05-21 21:17:23 +08:00
|
|
|
|
1999-09-15 03:24:37 +08:00
|
|
|
#if HAVE_PCRE || HAVE_BUNDLED_PCRE
|
1999-05-21 21:17:23 +08:00
|
|
|
|
1999-09-15 03:24:37 +08:00
|
|
|
#if HAVE_BUNDLED_PCRE
|
1999-05-27 09:19:00 +08:00
|
|
|
#include "pcrelib/pcre.h"
|
1999-09-15 03:24:37 +08:00
|
|
|
#else
|
|
|
|
#include "pcre.h"
|
|
|
|
#endif
|
|
|
|
|
1999-07-21 04:57:04 +08:00
|
|
|
#if HAVE_LOCALE_H
|
|
|
|
#include <locale.h>
|
|
|
|
#endif
|
1999-05-21 21:17:23 +08:00
|
|
|
|
2006-07-21 06:53:07 +08:00
|
|
|
PHPAPI char *php_pcre_replace(char *regex, int regex_len, char *subject, int subject_len, zval *replace_val, int is_callable_replace, int *result_len, int limit, int *replace_count TSRMLS_DC);
|
2003-03-25 16:07:13 +08:00
|
|
|
PHPAPI pcre* pcre_get_compiled_regex(char *regex, pcre_extra **extra, int *options TSRMLS_DC);
|
2004-02-01 06:36:33 +08:00
|
|
|
PHPAPI pcre* pcre_get_compiled_regex_ex(char *regex, pcre_extra **extra, int *preg_options, int *coptions TSRMLS_DC);
|
2001-10-21 06:01:56 +08:00
|
|
|
|
1999-05-21 21:17:23 +08:00
|
|
|
extern zend_module_entry pcre_module_entry;
|
|
|
|
#define pcre_module_ptr &pcre_module_entry
|
|
|
|
|
1999-05-22 03:27:44 +08:00
|
|
|
typedef struct {
|
2001-01-23 03:29:44 +08:00
|
|
|
pcre *re;
|
|
|
|
pcre_extra *extra;
|
1999-07-05 23:25:51 +08:00
|
|
|
int preg_options;
|
1999-07-21 04:57:04 +08:00
|
|
|
#if HAVE_SETLOCALE
|
|
|
|
char *locale;
|
|
|
|
unsigned const char *tables;
|
|
|
|
#endif
|
2004-02-01 11:02:47 +08:00
|
|
|
int compile_options;
|
2006-05-10 07:53:40 +08:00
|
|
|
int refcount;
|
1999-05-22 03:27:44 +08:00
|
|
|
} pcre_cache_entry;
|
|
|
|
|
2006-07-21 06:53:07 +08:00
|
|
|
PHPAPI pcre_cache_entry* pcre_get_compiled_regex_cache(char *regex, int regex_len TSRMLS_DC);
|
|
|
|
|
|
|
|
PHPAPI void php_pcre_match_impl( pcre_cache_entry *pce, char *subject, int subject_len, zval *return_value,
|
|
|
|
zval *subpats, int global, int use_flags, long flags, long start_offset TSRMLS_DC);
|
|
|
|
|
|
|
|
PHPAPI char *php_pcre_replace_impl(pcre_cache_entry *pce, char *subject, int subject_len, zval *return_value,
|
|
|
|
int is_callable_replace, int *result_len, int limit, int *replace_count TSRMLS_DC);
|
|
|
|
|
|
|
|
PHPAPI void php_pcre_split_impl( pcre_cache_entry *pce, char *subject, int subject_len, zval *return_value,
|
|
|
|
long limit_val, long flags TSRMLS_DC);
|
|
|
|
|
|
|
|
PHPAPI void php_pcre_grep_impl( pcre_cache_entry *pce, zval *input, zval *return_value,
|
|
|
|
long flags TSRMLS_DC);
|
2006-05-10 07:53:40 +08:00
|
|
|
|
2001-07-30 23:41:11 +08:00
|
|
|
ZEND_BEGIN_MODULE_GLOBALS(pcre)
|
1999-05-22 03:27:44 +08:00
|
|
|
HashTable pcre_cache;
|
2006-05-10 02:29:26 +08:00
|
|
|
long backtrack_limit;
|
|
|
|
long recursion_limit;
|
|
|
|
int error_code;
|
2001-07-30 23:41:11 +08:00
|
|
|
ZEND_END_MODULE_GLOBALS(pcre)
|
1999-05-22 03:27:44 +08:00
|
|
|
|
|
|
|
#ifdef ZTS
|
2001-07-30 23:41:11 +08:00
|
|
|
# define PCRE_G(v) TSRMG(pcre_globals_id, zend_pcre_globals *, v)
|
1999-05-22 03:27:44 +08:00
|
|
|
#else
|
|
|
|
# define PCRE_G(v) (pcre_globals.v)
|
|
|
|
#endif
|
|
|
|
|
1999-05-21 21:17:23 +08:00
|
|
|
#else
|
|
|
|
|
|
|
|
#define pcre_module_ptr NULL
|
|
|
|
|
1999-09-15 03:24:37 +08:00
|
|
|
#endif /* HAVE_PCRE || HAVE_BUNDLED_PCRE */
|
1999-05-21 21:17:23 +08:00
|
|
|
|
|
|
|
#define phpext_pcre_ptr pcre_module_ptr
|
|
|
|
|
2000-07-03 07:46:51 +08:00
|
|
|
#endif /* PHP_PCRE_H */
|