Searched refs:str_index_len (Results 1 - 2 of 2) sorted by relevance

/PHP_TRUNK/ext/standard/
H A Dstring.c2413 uint str_index_len; local
2566 if (zend_hash_get_current_key_ex(Z_ARRVAL_PP(str), &str_index, &str_index_len, &num_index, 0, &pos_str) == HASH_KEY_IS_STRING) {
2567 add_assoc_stringl_ex(return_value, str_index, str_index_len, result, result_len, 0);
/PHP_TRUNK/Zend/
H A Dzend_execute_API.c566 uint str_index_len; local
592 if (zend_hash_get_current_key_ex(Z_ARRVAL_P(p), &str_index, &str_index_len, &num_index, 0, NULL) != HASH_KEY_IS_STRING) {
596 if (!zend_get_constant_ex(str_index, str_index_len - 3, &const_value, scope, str_index[str_index_len - 2] TSRMLS_CC)) {
599 if ((colon = (char*)zend_memrchr(str_index, ':', str_index_len - 3))) {
601 str_index_len -= ((colon - str_index) + 1);
604 if (str_index[str_index_len - 2] & IS_CONSTANT_UNQUALIFIED) {
605 if ((actual = (char *)zend_memrchr(str_index, '\\', str_index_len - 3))) {
607 str_index_len -= (actual - str_index);
613 --str_index_len;
[all...]

Completed in 12 milliseconds