Searched defs:newval (Results 1 - 3 of 3) sorted by relevance
| /PHP_TRUNK/ext/ldap/ |
| H A D | ldap.c | 1654 /* {{{ proto bool ldap_set_option(resource link, int option, mixed newval) 1658 zval *link, **newval; local 1663 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "zlZ", &link, &option, &newval) != SUCCESS) { 1687 convert_to_long_ex(newval); 1688 val = Z_LVAL_PP(newval); 1698 convert_to_long_ex(newval); 1699 timeout.tv_sec = Z_LVAL_PP(newval); 1710 convert_to_long_ex(newval); 1711 timeout = 1000 * Z_LVAL_PP(newval); /* Convert to milliseconds */ 1733 convert_to_string_ex(newval); [all...] |
| /PHP_TRUNK/ext/spl/ |
| H A D | spl_array.c | 407 zval *newval; local 410 MAKE_STD_ZVAL(newval); 411 *newval = **ret; 412 zval_copy_ctor(newval); 413 Z_SET_REFCOUNT_P(newval, 1); 417 *ret = newval; 709 /* {{{ proto void ArrayObject::offsetSet(mixed $index, mixed $newval) 710 proto void ArrayIterator::offsetSet(mixed $index, mixed $newval) 711 Sets the value at the specified $index to $newval. */ 742 /* {{{ proto void ArrayObject::append(mixed $newval) [all...] |
| /PHP_TRUNK/ext/standard/ |
| H A D | streamsfuncs.c | 486 zval *newval; local 496 MAKE_STD_ZVAL(newval); 497 MAKE_COPY_ZVAL(&stream->wrapperdata, newval); 499 add_assoc_zval(return_value, "wrapper_data", newval); 512 MAKE_STD_ZVAL(newval); 513 array_init(newval); 516 add_next_index_string(newval, (char *)filter->fops->label, 1); 519 add_assoc_zval(return_value, "filters", newval);
|
Completed in 10 milliseconds