Searched defs:scanner_mode (Results 1 - 3 of 3) sorted by relevance
| /PHP_5_3/ext/standard/ |
| H A D | basic_functions.c | 845 ZEND_ARG_INFO(0, scanner_mode) 851 ZEND_ARG_INFO(0, scanner_mode) 5996 /* {{{ proto array parse_ini_file(string filename [, bool process_sections [, int scanner_mode]]) 6003 long scanner_mode = ZEND_INI_SCANNER_NORMAL; local 6007 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|bl", &filename, &filename_len, &process_sections, &scanner_mode) == FAILURE) { 6034 if (zend_parse_ini_file(&fh, 0, scanner_mode, ini_parser_cb, return_value TSRMLS_CC) == FAILURE) { 6042 /* {{{ proto array parse_ini_string(string ini_string [, bool process_sections [, int scanner_mode]]) 6049 long scanner_mode = ZEND_INI_SCANNER_NORMAL; local 6052 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|bl", &str, &str_len, &process_sections, &scanner_mode) == FAILURE) { 6074 if (zend_parse_ini_string(string, 0, scanner_mode, ini_parser_c [all...] |
| /PHP_5_3/Zend/ |
| H A D | zend_globals.h | 279 int scanner_mode; member in struct:_zend_ini_scanner_globals
|
| H A D | zend_ini_scanner.c | 174 static int init_ini_scanner(int scanner_mode, zend_file_handle *fh TSRMLS_DC) argument 177 if (scanner_mode != ZEND_INI_SCANNER_NORMAL && scanner_mode != ZEND_INI_SCANNER_RAW) { 183 SCNG(scanner_mode) = scanner_mode; 228 int zend_ini_open_file_for_scanning(zend_file_handle *fh, int scanner_mode TSRMLS_DC) 237 if (init_ini_scanner(scanner_mode, fh TSRMLS_CC) == FAILURE) { 250 int zend_ini_prepare_string_for_scanning(char *str, int scanner_mode TSRMLS_DC) 254 if (init_ini_scanner(scanner_mode, NULL TSRMLS_CC) == FAILURE) { 572 if (SCNG(scanner_mode) [all...] |
Completed in 11 milliseconds