Searched defs:variable (Results 1 - 5 of 5) sorted by relevance
| /PHP_5_4/sapi/apache2filter/ |
| H A D | php_functions.c | 221 /* {{{ proto bool apache_setenv(string variable, string value [, bool walk_to_top]) 222 Set an Apache subprocess_env variable */ 226 char *variable=NULL, *string_val=NULL; local 231 if (zend_parse_parameters(arg_count TSRMLS_CC, "ss|b", &variable, &variable_len, &string_val, &string_val_len, &walk_to_top) == FAILURE) { 243 apr_table_set(ctx->r->subprocess_env, variable, string_val); 249 /* {{{ proto bool apache_getenv(string variable [, bool walk_to_top]) 250 Get an Apache subprocess_env variable */ 254 char *variable=NULL; local 260 if (zend_parse_parameters(arg_count TSRMLS_CC, "s|b", &variable, &variable_len, &walk_to_top) == FAILURE) { 272 env_val = (char*) apr_table_get(ctx->r->subprocess_env, variable); [all...] |
| /PHP_5_4/sapi/apache2handler/ |
| H A D | php_functions.c | 249 /* {{{ proto bool apache_setenv(string variable, string value [, bool walk_to_top]) 250 Set an Apache subprocess_env variable */ 256 char *variable=NULL, *string_val=NULL; local 262 if (zend_parse_parameters(arg_count TSRMLS_CC, "ss|b", &variable, &variable_len, &string_val, &string_val_len, &walk_to_top) == FAILURE) { 277 apr_table_set(r->subprocess_env, variable, string_val); 283 /* {{{ proto bool apache_getenv(string variable [, bool walk_to_top]) 284 Get an Apache subprocess_env variable */ 291 char *variable=NULL; local 298 if (zend_parse_parameters(arg_count TSRMLS_CC, "s|b", &variable, &variable_len, &walk_to_top) == FAILURE) { 313 env_val = (char*) apr_table_get(r->subprocess_env, variable); [all...] |
| /PHP_5_4/sapi/isapi/ |
| H A D | php5isapi.c | 599 char *variable; local 643 variable = php_strtok_r(isapi_special_server_variables[SPECIAL_VAR_ALL_HTTP], "\r\n", &strtok_buf); 644 while (variable) { 645 char *colon = strchr(variable, ':'); 654 php_register_variable(variable, value, track_vars_array TSRMLS_CC); 657 variable = php_strtok_r(NULL, "\r\n", &strtok_buf);
|
| /PHP_5_4/Zend/ |
| H A D | zend_language_parser.y | 132 %token T_STRING_VARNAME "variable name (T_STRING_VARNAME)" 133 %token T_VARIABLE "variable (T_VARIABLE)" 299 | T_RETURN variable ';' { zend_do_return(&$2, 1 TSRMLS_CC); } 306 | T_FOREACH '(' variable T_AS 312 variable foreach_optional_arg ')' { zend_check_writable_variable(&$6); zend_do_foreach_cont(&$1, &$2, &$4, &$6, &$7 TSRMLS_CC); } 349 variable { zend_do_end_variable_parse(&$1, BP_VAR_UNSET, 0 TSRMLS_CC); zend_do_unset(&$1 TSRMLS_CC); } 426 variable { zend_check_writable_variable(&$1); $$ = $1; } 427 | '&' variable { zend_check_writable_variable(&$2); $$ = $2; $$.EA |= ZEND_PARSED_REFERENCE_VARIABLE; } 540 | variable { Z_LVAL($$.u.constant) = 1; zend_do_pass_param(&$1, ZEND_SEND_VAR, Z_LVAL($$.u.constant) TSRMLS_CC); } 543 | non_empty_function_call_parameter_list ',' variable { Z_LVA 987 variable: label [all...] |
| H A D | zend_compile.c | 565 static inline zend_bool zend_is_function_or_method_call(const znode *variable) /* {{{ */ argument 567 zend_uint type = variable->EA; 918 void zend_do_assign(znode *result, znode *variable, znode *value TSRMLS_DC) /* {{{ */ argument 950 zend_do_end_variable_parse(variable, BP_VAR_W, 0 TSRMLS_CC); 955 if (variable->op_type == IS_CV) { 956 if (variable->u.op.var == CG(active_op_array)->this_var) { 959 } else if (variable->op_type == IS_VAR) { 968 last_op->result.var == variable->u.op.var) { 1013 SET_NODE(opline->op1, variable); 1078 * We won't try to free something of we don't have loop variable 1272 zend_check_writable_variable(const znode *variable) argument 1294 zend_do_end_variable_parse(znode *variable, int type, int arg_offset TSRMLS_DC) argument [all...] |
Completed in 12 milliseconds