Searched defs:scanner_mode (Results 1 - 3 of 3) sorted by relevance
| /PHP_5_5/Zend/ |
| H A D | zend_globals.h | 280 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...] |
| /PHP_5_5/ext/standard/ |
| H A D | basic_functions.c | 854 ZEND_ARG_INFO(0, scanner_mode) 860 ZEND_ARG_INFO(0, scanner_mode) 5963 /* {{{ proto array parse_ini_file(string filename [, bool process_sections [, int scanner_mode]]) 5970 long scanner_mode = ZEND_INI_SCANNER_NORMAL; local 5974 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "p|bl", &filename, &filename_len, &process_sections, &scanner_mode) == FAILURE) { 5997 if (zend_parse_ini_file(&fh, 0, scanner_mode, ini_parser_cb, return_value TSRMLS_CC) == FAILURE) { 6005 /* {{{ proto array parse_ini_string(string ini_string [, bool process_sections [, int scanner_mode]]) 6012 long scanner_mode = ZEND_INI_SCANNER_NORMAL; local 6015 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|bl", &str, &str_len, &process_sections, &scanner_mode) == FAILURE) { 6037 if (zend_parse_ini_string(string, 0, scanner_mode, ini_parser_c [all...] |
Completed in 11 milliseconds