Home
last modified time | relevance | path

Searched refs:new_var (Results 1 – 3 of 3) sorted by relevance

/PHP-5.5/ext/filter/
H A Dfilter.c409 zval new_var, raw_var; in php_sapi_filter() local
461 Z_STRLEN(new_var) = val_len; in php_sapi_filter()
462 Z_TYPE(new_var) = IS_STRING; in php_sapi_filter()
465 zval *tmp_new_var = &new_var; in php_sapi_filter()
466 Z_STRVAL(new_var) = estrndup(*val, val_len); in php_sapi_filter()
470 Z_STRVAL(new_var) = estrndup(*val, val_len); in php_sapi_filter()
473 ZVAL_EMPTY_STRING(&new_var); in php_sapi_filter()
482 *new_val_len = Z_STRLEN(new_var); in php_sapi_filter()
485 if (Z_STRLEN(new_var)) { in php_sapi_filter()
486 *val = estrndup(Z_STRVAL(new_var), Z_STRLEN(new_var)); in php_sapi_filter()
[all …]
/PHP-5.5/
H A DREADME.input_filter99 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.5/ext/standard/
H A Darray.c1906 *new_var; /* Variable to be pushed */ in PHP_FUNCTION() local
1917 new_var = *args[i]; in PHP_FUNCTION()
1918 Z_ADDREF_P(new_var); in PHP_FUNCTION()
1920 if (zend_hash_next_index_insert(Z_ARRVAL_P(stack), &new_var, sizeof(zval *), NULL) == FAILURE) { in PHP_FUNCTION()
1921 Z_DELREF_P(new_var); in PHP_FUNCTION()

Completed in 25 milliseconds