/PHP-8.1/ext/xml/tests/ |
H A D | gh12254.phpt | 9 xml_set_element_handler($parser, function ($parser, $name, $attrs) { 11 var_dump($name, $attrs);
|
H A D | bug32001b.phpt | 33 function start_element($parser, $name, $attrs) { 34 $attrs = array_map('bin2hex', $attrs); 35 $this->tags[] = bin2hex($name).": ".implode(', ', $attrs);
|
H A D | bug32001.phpt | 28 function start_element($parser, $name, $attrs) { 29 $attrs = array_map('bin2hex', $attrs); 30 $this->tags[] = bin2hex($name).": ".implode(', ', $attrs);
|
H A D | bug26614.phpt | 57 function startElement($parser, $name, $attrs) {
|
H A D | bug26614_libxml_gte2_11.phpt | 58 function startElement($parser, $name, $attrs) {
|
H A D | bug26614_libxml_pre2_11.phpt | 58 function startElement($parser, $name, $attrs) {
|
/PHP-8.1/ext/ldap/tests/ |
H A D | ldap_mod_ext.phpt | 29 … ['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 D | ldap_rename_ext.phpt | 24 ['oid' => LDAP_CONTROL_PRE_READ, 'iscritical' => TRUE, 'value' => ['attrs' => ['cn']]], 25 ['oid' => LDAP_CONTROL_POST_READ, 'iscritical' => TRUE, 'value' => ['attrs' => ['cn']]]
|
H A D | ldap_add_ext.phpt | 25 ), [['oid' => LDAP_CONTROL_POST_READ, 'iscritical' => TRUE, 'value' => ['attrs' => ['o']]]]),
|
H A D | ldap_delete_ext.phpt | 29 … [['oid' => LDAP_CONTROL_PRE_READ, 'iscritical' => TRUE, 'value' => ['attrs' => ['dc', 'o']]]]
|
/PHP-8.1/ext/pdo/tests/ |
H A D | bug_44159.phpt | 19 $attrs = array(PDO::ATTR_STATEMENT_CLASS, PDO::ATTR_STRINGIFY_FETCHES); 21 foreach ($attrs as $attr) {
|
/PHP-8.1/ext/dom/tests/ |
H A D | toString_exceptions.phpt | 26 $attrs = $node->attributes; 27 $attr = $attrs[0];
|
H A D | bug67081.phpt | 38 <!ENTITY % attrs "%coreattrs;">
|
H A D | dom001.phpt | 64 $attrs = $rootnode->attributes; 65 print_node_list($attrs); 68 $children = $attrs->item(0)->childNodes;
|
/PHP-8.1/ext/xml/ |
H A D | compat.c | 93 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 D | xml.c | 630 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 D | bug68371.phpt | 16 $attrs = array( 45 foreach ($attrs as $a => $vals) {
|
/PHP-8.1/ext/pdo_pgsql/tests/ |
H A D | bug68371.phpt | 19 $attrs = array( 47 foreach ($attrs as $a => $vals) {
|
/PHP-8.1/ext/soap/ |
H A D | php_schema.c | 1359 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 D | zend_virtual_cwd.c | 833 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 D | ldap.c | 1555 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()
|