| /PHP_5_5/ext/tidy/examples/ |
| H A D | dumpit5.php | 72 if(count($node->attribute)) { 76 foreach($node->attribute as $name=>$value) {
|
| H A D | urlgrab5.php | 21 $urls[] = $node->attribute['href'];
|
| /PHP_5_5/ext/intl/collator/ |
| H A D | collator_attr.c | 30 * Get collation attribute value. }}} */ 32 * Get collation attribute value. 36 long attribute, value; local 42 &object, Collator_ce_ptr, &attribute ) == FAILURE ) 53 value = ucol_getAttribute( co->ucoll, attribute, COLLATOR_ERROR_CODE_P( co ) ); 54 COLLATOR_CHECK_STATUS( co, "Error getting attribute value" ); 61 * Get collation attribute value. }}} */ 63 * Set collation attribute. 67 long attribute, value; local 73 &object, Collator_ce_ptr, &attribute, [all...] |
| /PHP_5_5/ext/intl/doc/ |
| H A D | formatter_api.php | 224 * Set formatter attribute. 231 * @param integer|double $value Value of the attribute 232 * @return false if attribute is unknown or can not be set, true otherwise 236 * Set formatter attribute. 243 * @param string $value Value of the attribute 244 * @return false if attribute is unknown or can not be set, true otherwise 271 * Get value of the formatter attribute 274 * @return integer|double value of the attribute or false if the value can not be obtained 278 * Get value of the formatter attribute 281 * @return string value of the attribute o [all...] |
| /PHP_5_5/ext/intl/formatter/ |
| H A D | formatter_attr.c | 29 * Get formatter attribute value. }}} */ 31 * Get formatter attribute value. 35 long attribute, value; local 40 &object, NumberFormatter_ce_ptr, &attribute ) == FAILURE ) 51 switch(attribute) { 71 value = unum_getAttribute(FORMATTER_OBJECT(nfo), attribute); 80 double value_double = unum_getDoubleAttribute(FORMATTER_OBJECT(nfo), attribute); 93 INTL_METHOD_CHECK_STATUS( nfo, "Error getting attribute value" ); 98 * Get formatter attribute value. }}} */ 100 * Get formatter attribute valu 104 long attribute; local 148 long attribute; local 186 unum_setAttribute(FORMATTER_OBJECT(nfo), attribute, Z_LVAL_PP(value)); local 190 unum_setDoubleAttribute(FORMATTER_OBJECT(nfo), attribute, Z_DVAL_PP(value)); local 212 long attribute; local 235 unum_setTextAttribute(FORMATTER_OBJECT(nfo), attribute, svalue, slength, &INTL_DATA_ERROR_CODE(nfo)); local [all...] |
| /PHP_5_5/ext/imap/ |
| H A D | php_imap.c | 3347 add_property_string(dparam, "attribute", dpar->attribute, 1); 3365 if (par->attribute) { 3366 add_property_string(param, "attribute", par->attribute, 1); 3548 custom_headers_param->attribute = NULL; 3579 tmp_param->attribute = cpystr("CHARSET"); 3589 disp_param->attribute = cpystr(key); 3623 disp_param->attribute = cpystr(key); 3692 tmp_param->attribute [all...] |
| /PHP_5_5/ext/ldap/ |
| H A D | ldap.c | 925 char *attribute; local 959 attribute = ldap_first_attribute(ldap, ldap_result_entry, &ber); 961 while (attribute != NULL) { 962 ldap_value = ldap_get_values_len(ldap, ldap_result_entry, attribute); 973 attr_len = strlen(attribute); 974 zend_hash_update(Z_ARRVAL_P(tmp1), php_strtolower(attribute, attr_len), attr_len+1, (void *) &tmp2, sizeof(zval *), NULL); 975 add_index_string(tmp1, num_attrib, attribute, 1); 979 ldap_memfree(attribute); 981 attribute = ldap_next_attribute(ldap, ldap_result_entry, ber); 1010 Return first attribute */ 1016 char *attribute; local 1044 char *attribute; local 1084 char *attribute; local 1112 zend_hash_update(Z_ARRVAL_P(return_value), attribute, strlen(attribute)+1, (void *) &tmp, sizeof(zval *), NULL); local 1266 char *attribute; local [all...] |
| /PHP_5_5/ext/pdo/ |
| H A D | pdo_dbh.c | 712 pdo_raise_impl_error(dbh, NULL, "HY000", "attribute value must be an integer" TSRMLS_CC); \ 863 /* {{{ proto bool PDO::setAttribute(long attribute, mixed value) 864 Set an attribute */ 885 /* {{{ proto mixed PDO::getAttribute(long attribute) 886 Get an attribute */ 940 pdo_raise_impl_error(dbh, NULL, "IM001", "driver does not support that attribute" TSRMLS_CC); 1239 ZEND_ARG_INFO(0, attribute) 1244 ZEND_ARG_INFO(0, attribute)
|
| H A D | pdo_stmt.c | 92 ZEND_ARG_INFO(0, attribute) 97 ZEND_ARG_INFO(0, attribute) 1739 /* {{{ proto bool PDOStatement::setAttribute(long attribute, mixed value) 1740 Set an attribute */ 1770 /* {{{ proto mixed PDOStatement::getAttribute(long attribute) 1771 Get an attribute */ 1811 "driver doesn't support getting that attribute" TSRMLS_CC);
|
| /PHP_5_5/ext/soap/ |
| H A D | php_schema.c | 160 Content: ((include | import | redefine | annotation)*, (((simpleType | complexType | group | attributeGroup) | element | attribute | notation), annotation*)*) 194 soap_error0(E_ERROR, "Parsing Schema: include has no 'schemaLocation' attribute"); 214 soap_error0(E_ERROR, "Parsing Schema: redefine has no 'schemaLocation' attribute"); 282 } else if (node_is_equal(trav,"attribute")) { 370 soap_error0(E_ERROR, "Parsing Schema: simpleType has no 'name' attribute"); 453 soap_error0(E_ERROR, "Parsing Schema: element has both 'itemType' attribute and subtype"); 633 Content: (annotation?, (simpleType?, (minExclusive | minInclusive | maxExclusive | maxInclusive | totalDigits | fractionDigits | length | minLength | maxLength | enumeration | whiteSpace | pattern)*)?, ((attribute | attributeGroup)*, anyAttribute?)) 654 soap_error0(E_ERROR, "Parsing Schema: restriction has no 'base' attribute"); 712 if (node_is_equal(trav,"attribute")) { 738 Content: (annotation?, (group | all | choice | sequence)?, ((attribute | attributeGrou 2023 copy_extra_attribute(void *attribute) argument 2435 delete_extra_attribute(void *attribute) argument 2448 delete_extra_attribute_persistent(void *attribute) argument 2461 delete_attribute(void *attribute) argument 2487 delete_attribute_persistent(void *attribute) argument [all...] |
| H A D | php_schema.h | 32 void delete_extra_attribute(void *attribute); 33 void delete_extra_attribute_persistent(void *attribute); 34 void delete_attribute(void *attribute); 35 void delete_attribute_persistent(void *attribute);
|
| H A D | php_xml.h | 43 xmlNodePtr get_node_with_attribute_ex(xmlNodePtr node, char *name, char *name_ns, char *attribute, char *value, char *attr_ns); 44 xmlNodePtr get_node_with_attribute_recursive_ex(xmlNodePtr node, char *name, char *name_ns, char *attribute, char *value, char *attr_ns);
|
| H A D | php_xml.c | 274 xmlNodePtr get_node_with_attribute_ex(xmlNodePtr node, char *name, char *name_ns, char *attribute, char *value, char *attr_ns) argument 286 attr = get_attribute_ex(node->properties, attribute, attr_ns); 295 xmlNodePtr get_node_with_attribute_recursive_ex(xmlNodePtr node, char *name, char *name_ns, char *attribute, char *value, char *attr_ns) argument 299 xmlAttrPtr attr = get_attribute_ex(node->properties, attribute, attr_ns); 305 xmlNodePtr tmp = get_node_with_attribute_recursive_ex(node->children, name, name_ns, attribute, value, attr_ns);
|
| /PHP_5_5/ext/tidy/ |
| H A D | tidy.c | 851 zval *attribute, *children, *temp; local 883 MAKE_STD_ZVAL(attribute); 887 array_init(attribute); 893 add_assoc_string(attribute, name, val, TRUE); 897 ZVAL_NULL(attribute); 899 zend_hash_update(obj->std.properties, "attribute", sizeof("attribute"), (void *)&attribute, sizeof(zval *), NULL);
|
| /PHP_5_5/ext/mysqli/ |
| H A D | mysqli_fe.c | 316 ZEND_ARG_INFO(0, attribute) 320 ZEND_ARG_INFO(0, attribute) 325 ZEND_ARG_INFO(0, attribute) 330 ZEND_ARG_INFO(0, attribute)
|