Searched refs:new_var (Results 1 – 3 of 3) sorted by relevance
/PHP-5.4/ext/filter/ |
H A D | filter.c | 407 zval new_var, raw_var; in php_sapi_filter() local 459 Z_STRLEN(new_var) = val_len; in php_sapi_filter() 460 Z_TYPE(new_var) = IS_STRING; in php_sapi_filter() 463 zval *tmp_new_var = &new_var; in php_sapi_filter() 464 Z_STRVAL(new_var) = estrndup(*val, val_len); in php_sapi_filter() 468 Z_STRVAL(new_var) = estrndup(*val, val_len); in php_sapi_filter() 471 ZVAL_EMPTY_STRING(&new_var); in php_sapi_filter() 480 *new_val_len = Z_STRLEN(new_var); in php_sapi_filter() 483 if (Z_STRLEN(new_var)) { in php_sapi_filter() 484 *val = estrndup(Z_STRVAL(new_var), Z_STRLEN(new_var)); in php_sapi_filter() [all …]
|
/PHP-5.4/ |
H A D | README.input_filter | 99 zval new_var; 132 Z_STRLEN(new_var) = val_len; 133 Z_STRVAL(new_var) = estrndup(*val, val_len); 134 Z_TYPE(new_var) = IS_STRING; 141 php_register_variable_ex(raw_var, &new_var, array_ptr TSRMLS_DC);
|
/PHP-5.4/ext/standard/ |
H A D | array.c | 1941 *new_var; /* Variable to be pushed */ in PHP_FUNCTION() local 1952 new_var = *args[i]; in PHP_FUNCTION() 1953 Z_ADDREF_P(new_var); in PHP_FUNCTION() 1955 if (zend_hash_next_index_insert(Z_ARRVAL_P(stack), &new_var, sizeof(zval *), NULL) == FAILURE) { in PHP_FUNCTION() 1956 Z_DELREF_P(new_var); in PHP_FUNCTION()
|
Completed in 17 milliseconds