Home
last modified time | relevance | path

Searched refs:TRACK_VARS_SERVER (Results 1 – 13 of 13) sorted by relevance

/PHP-5.4/main/
H A Dphp_variables.c560 if (PG(http_globals)[TRACK_VARS_SERVER]) { in php_register_server_variables()
561 zval_ptr_dtor(&PG(http_globals)[TRACK_VARS_SERVER]); in php_register_server_variables()
563 PG(http_globals)[TRACK_VARS_SERVER] = array_ptr; in php_register_server_variables()
644 php_build_argv(SG(request_info).query_string, PG(http_globals)[TRACK_VARS_SERVER] TSRMLS_CC); in php_hash_environment()
755 …zend_hash_update(Z_ARRVAL_P(PG(http_globals)[TRACK_VARS_SERVER]), "argv", sizeof("argv"), argv, si… in php_auto_globals_create_server()
759 php_build_argv(SG(request_info).query_string, PG(http_globals)[TRACK_VARS_SERVER] TSRMLS_CC); in php_auto_globals_create_server()
768 if (PG(http_globals)[TRACK_VARS_SERVER]) { in php_auto_globals_create_server()
769 zval_ptr_dtor(&PG(http_globals)[TRACK_VARS_SERVER]); in php_auto_globals_create_server()
771 PG(http_globals)[TRACK_VARS_SERVER] = server_vars; in php_auto_globals_create_server()
774 …zend_hash_update(&EG(symbol_table), name, name_len + 1, &PG(http_globals)[TRACK_VARS_SERVER], size… in php_auto_globals_create_server()
[all …]
H A Dphp_globals.h44 #define TRACK_VARS_SERVER 3 macro
/PHP-5.4/sapi/apache_hooks/
H A Dsapi_apache.c82 php_register_variable_ex("request", req, PG(http_globals)[TRACK_VARS_SERVER] TSRMLS_CC); in apache_php_module_hook()
86 …p_register_variable("PHP_SELF_HOOK", handler->name, PG(http_globals)[TRACK_VARS_SERVER] TSRMLS_CC); in apache_php_module_hook()
/PHP-5.4/sapi/litespeed/
H A Dlsapi_main.c251 } else if (PG(http_globals)[TRACK_VARS_SERVER] && in litespeed_php_import_environment_variables()
252 array_ptr != PG(http_globals)[TRACK_VARS_SERVER] && in litespeed_php_import_environment_variables()
253 Z_TYPE_P(PG(http_globals)[TRACK_VARS_SERVER]) == IS_ARRAY && in litespeed_php_import_environment_variables()
254 zend_hash_num_elements(Z_ARRVAL_P(PG(http_globals)[TRACK_VARS_SERVER])) > 0 in litespeed_php_import_environment_variables()
257 *array_ptr = *PG(http_globals)[TRACK_VARS_SERVER]; in litespeed_php_import_environment_variables()
/PHP-5.4/ext/standard/
H A Dbrowscap.c500 if (!PG(http_globals)[TRACK_VARS_SERVER] || in PHP_FUNCTION()
501 …zend_hash_find(HASH_OF(PG(http_globals)[TRACK_VARS_SERVER]), "HTTP_USER_AGENT", sizeof("HTTP_USER_… in PHP_FUNCTION()
H A Dbasic_functions.c4207 if (PG(http_globals)[TRACK_VARS_SERVER] &&
4208 …(zend_hash_find(HASH_OF(PG(http_globals)[TRACK_VARS_SERVER]), "argv", sizeof("argv"), (void **) &a…
/PHP-5.4/sapi/fpm/fpm/
H A Dfpm_main.c584 } else if (PG(http_globals)[TRACK_VARS_SERVER] && in cgi_php_import_environment_variables()
585 array_ptr != PG(http_globals)[TRACK_VARS_SERVER] && in cgi_php_import_environment_variables()
586 Z_TYPE_P(PG(http_globals)[TRACK_VARS_SERVER]) == IS_ARRAY && in cgi_php_import_environment_variables()
587 zend_hash_num_elements(Z_ARRVAL_P(PG(http_globals)[TRACK_VARS_SERVER])) > 0 in cgi_php_import_environment_variables()
590 *array_ptr = *PG(http_globals)[TRACK_VARS_SERVER]; in cgi_php_import_environment_variables()
/PHP-5.4/sapi/cgi/
H A Dcgi_main.c639 } else if (PG(http_globals)[TRACK_VARS_SERVER] && in cgi_php_import_environment_variables()
640 array_ptr != PG(http_globals)[TRACK_VARS_SERVER] && in cgi_php_import_environment_variables()
641 Z_TYPE_P(PG(http_globals)[TRACK_VARS_SERVER]) == IS_ARRAY && in cgi_php_import_environment_variables()
642 zend_hash_num_elements(Z_ARRVAL_P(PG(http_globals)[TRACK_VARS_SERVER])) > 0 in cgi_php_import_environment_variables()
645 *array_ptr = *PG(http_globals)[TRACK_VARS_SERVER]; in cgi_php_import_environment_variables()
/PHP-5.4/ext/zlib/
H A Dzlib.c74 …if (PG(http_globals)[TRACK_VARS_SERVER] && SUCCESS == zend_hash_find(Z_ARRVAL_P(PG(http_globals)[T… in php_zlib_output_encoding()
/PHP-5.4/ext/session/
H A Dsession.c1465 if (!PS(use_only_cookies) && !PS(id) && PG(http_globals)[TRACK_VARS_SERVER] &&
1466 …zend_hash_find(Z_ARRVAL_P(PG(http_globals)[TRACK_VARS_SERVER]), "REQUEST_URI", sizeof("REQUEST_URI…
1485 PG(http_globals)[TRACK_VARS_SERVER] &&
1486 …zend_hash_find(Z_ARRVAL_P(PG(http_globals)[TRACK_VARS_SERVER]), "HTTP_REFERER", sizeof("HTTP_REFER…
/PHP-5.4/ext/filter/
H A Dfilter.c430 PARSE_CASE(PARSE_SERVER, server_array, TRACK_VARS_SERVER) in php_sapi_filter()
/PHP-5.4/ext/phar/
H A Dphar_object.c69 if (!PG(http_globals)[TRACK_VARS_SERVER]) { in phar_mung_server_vars()
73 _SERVER = Z_ARRVAL_P(PG(http_globals)[TRACK_VARS_SERVER]); in phar_mung_server_vars()
612 if (PG(http_globals)[TRACK_VARS_SERVER]) {
613 HashTable *_server = Z_ARRVAL_P(PG(http_globals)[TRACK_VARS_SERVER]);
/PHP-5.4/ext/soap/
H A Dsoap.c2075 if (PG(http_globals)[TRACK_VARS_SERVER] &&
2076 …zend_hash_find(PG(http_globals)[TRACK_VARS_SERVER]->value.ht, "HTTP_USER_AGENT", sizeof("HTTP_USER…

Completed in 71 milliseconds