Searched defs:variable (Results 1 - 5 of 5) sorted by relevance
| /PHP_5_3/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_3/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_3/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_3/Zend/ |
| H A D | zend_compile.c | 589 void zend_do_assign(znode *result, znode *variable, const znode *value TSRMLS_DC) /* {{{ */ argument 621 zend_do_end_variable_parse(variable, BP_VAR_W, 0 TSRMLS_CC); 626 if (variable->op_type == IS_CV) { 627 if (variable->u.var == CG(active_op_array)->this_var) { 630 } else if (variable->op_type == IS_VAR) { 639 last_op->result.u.var == variable->u.var) { 685 opline->op1 = *variable; 694 static inline zend_bool zend_is_function_or_method_call(const znode *variable) /* {{{ */ argument 696 zend_uint type = variable->u.EA.type; 761 * We won't try to free something of we don't have loop variable 957 zend_check_writable_variable(const znode *variable) argument 979 zend_do_end_variable_parse(znode *variable, int type, int arg_offset TSRMLS_DC) argument [all...] |
| H A D | zend_language_parser.y | 240 | T_RETURN variable ';' { zend_do_return(&$2, 1 TSRMLS_CC); } 247 | T_FOREACH '(' variable T_AS 253 variable foreach_optional_arg ')' { zend_check_writable_variable(&$6); zend_do_foreach_cont(&$1, &$2, &$4, &$6, &$7 TSRMLS_CC); } 290 variable { zend_do_end_variable_parse(&$1, BP_VAR_UNSET, 0 TSRMLS_CC); zend_do_unset(&$1 TSRMLS_CC); } 366 variable { zend_check_writable_variable(&$1); $$ = $1; } 367 | '&' variable { zend_check_writable_variable(&$2); $$ = $2; $$.u.EA.type |= ZEND_PARSED_REFERENCE_VARIABLE; } 479 | variable { Z_LVAL($$.u.constant) = 1; zend_do_pass_param(&$1, ZEND_SEND_VAR, Z_LVAL($$.u.constant) TSRMLS_CC); } 482 | non_empty_function_call_parameter_list ',' variable { Z_LVAL($$.u.constant)=Z_LVAL($1.u.constant)+1; zend_do_pass_param(&$3, ZEND_SEND_VAR, Z_LVAL($$.u.constant) TSRMLS_CC); } 581 | variable '=' expr { zend_check_writable_variable(&$1); zend_do_assign(&$$, &$1, &$3 TSRMLS_CC); } 582 | variable ' 836 variable: label [all...] |
Completed in 10 milliseconds