Home
last modified time | relevance | path

Searched refs:attrs (Results 1 – 21 of 21) sorted by relevance

/PHP-8.1/ext/xml/tests/
H A Dgh12254.phpt9 xml_set_element_handler($parser, function ($parser, $name, $attrs) {
11 var_dump($name, $attrs);
H A Dbug32001b.phpt33 function start_element($parser, $name, $attrs) {
34 $attrs = array_map('bin2hex', $attrs);
35 $this->tags[] = bin2hex($name).": ".implode(', ', $attrs);
H A Dbug32001.phpt28 function start_element($parser, $name, $attrs) {
29 $attrs = array_map('bin2hex', $attrs);
30 $this->tags[] = bin2hex($name).": ".implode(', ', $attrs);
H A Dbug26614.phpt57 function startElement($parser, $name, $attrs) {
H A Dbug26614_libxml_gte2_11.phpt58 function startElement($parser, $name, $attrs) {
H A Dbug26614_libxml_pre2_11.phpt58 function startElement($parser, $name, $attrs) {
/PHP-8.1/ext/ldap/tests/
H A Dldap_mod_ext.phpt29 … ['oid' => LDAP_CONTROL_PRE_READ, 'iscritical' => TRUE, 'value' => ['attrs' => ['description']]],
30 … ['oid' => LDAP_CONTROL_POST_READ, 'iscritical' => TRUE, 'value' => ['attrs' => ['description']]],
43 … ['oid' => LDAP_CONTROL_PRE_READ, 'iscritical' => TRUE, 'value' => ['attrs' => ['description']]],
44 … ['oid' => LDAP_CONTROL_POST_READ, 'iscritical' => TRUE, 'value' => ['attrs' => ['description']]],
H A Dldap_rename_ext.phpt24 ['oid' => LDAP_CONTROL_PRE_READ, 'iscritical' => TRUE, 'value' => ['attrs' => ['cn']]],
25 ['oid' => LDAP_CONTROL_POST_READ, 'iscritical' => TRUE, 'value' => ['attrs' => ['cn']]]
H A Dldap_add_ext.phpt25 ), [['oid' => LDAP_CONTROL_POST_READ, 'iscritical' => TRUE, 'value' => ['attrs' => ['o']]]]),
H A Dldap_delete_ext.phpt29 … [['oid' => LDAP_CONTROL_PRE_READ, 'iscritical' => TRUE, 'value' => ['attrs' => ['dc', 'o']]]]
/PHP-8.1/ext/pdo/tests/
H A Dbug_44159.phpt19 $attrs = array(PDO::ATTR_STATEMENT_CLASS, PDO::ATTR_STRINGIFY_FETCHES);
21 foreach ($attrs as $attr) {
/PHP-8.1/ext/dom/tests/
H A DtoString_exceptions.phpt26 $attrs = $node->attributes;
27 $attr = $attrs[0];
H A Dbug67081.phpt38 <!ENTITY % attrs "%coreattrs;">
H A Ddom001.phpt64 $attrs = $rootnode->attributes;
65 print_node_list($attrs);
68 $children = $attrs->item(0)->childNodes;
/PHP-8.1/ext/xml/
H A Dcompat.c93 xmlChar **attrs = NULL; in _start_element_handler_ns() local
172 attrs = safe_emalloc((nb_attributes * 2) + 1, sizeof(int *), 0); in _start_element_handler_ns()
181 attrs[z] = qualified_name_attr; in _start_element_handler_ns()
182 attrs[z + 1] = xmlStrndup(attributes[y + 3] , (int) (attributes[y + 4] - attributes[y + 3])); in _start_element_handler_ns()
187 attrs[z] = NULL; in _start_element_handler_ns()
189 …parser->h_start_element(parser->user, (const XML_Char *) qualified_name, (const XML_Char **) attrs in _start_element_handler_ns()
190 if (attrs) { in _start_element_handler_ns()
192 xmlFree(attrs[i]); in _start_element_handler_ns()
194 efree(attrs); in _start_element_handler_ns()
H A Dxml.c630 const char **attrs = (const char **) attributes; in _xml_startElementHandler() local
679 attributes = (const XML_Char **) attrs; in _xml_startElementHandler()
/PHP-8.1/ext/pdo_mysql/tests/
H A Dbug68371.phpt16 $attrs = array(
45 foreach ($attrs as $a => $vals) {
/PHP-8.1/ext/pdo_pgsql/tests/
H A Dbug68371.phpt19 $attrs = array(
47 foreach ($attrs as $a => $vals) {
/PHP-8.1/ext/soap/
H A Dphp_schema.c1359 xmlAttrPtr attrs, name, ns; in schema_complexType() local
1361 attrs = compType->properties; in schema_complexType()
1367 name = get_attribute(attrs, "name"); in schema_complexType()
1490 attrs = element->properties; in schema_element()
1496 name = get_attribute(attrs, "name"); in schema_element()
1588 attrs = element->properties; in schema_element()
1589 attr = get_attribute(attrs, "nillable"); in schema_element()
1604 attr = get_attribute(attrs, "fixed"); in schema_element()
1612 attr = get_attribute(attrs, "default"); in schema_element()
1621 attr = get_attribute(attrs, "form"); in schema_element()
[all …]
/PHP-8.1/Zend/
H A Dzend_virtual_cwd.c833 DWORD attrs; in tsrm_realpath_r() local
840 attrs = GetFileAttributesW(pathw); in tsrm_realpath_r()
841 if (!isVolume && attrs != INVALID_FILE_ATTRIBUTES && (attrs & FILE_ATTRIBUTE_REPARSE_POINT)) { in tsrm_realpath_r()
/PHP-8.1/ext/ldap/
H A Dldap.c1555 zval *link, *attrs = NULL, *attr, *serverctrls = NULL; in php_ldap_do_search() local
1574 Z_PARAM_ARRAY_EX(attrs, 0, 1) in php_ldap_do_search()
1598 num_attribs = zend_hash_num_elements(Z_ARRVAL_P(attrs)); in php_ldap_do_search()
1602 if ((attr = zend_hash_index_find(Z_ARRVAL_P(attrs), i)) == NULL) { in php_ldap_do_search()

Completed in 53 milliseconds