Home
last modified time | relevance | path

Searched refs:attr (Results 1 – 25 of 98) sorted by path

1234

/PHP-5.5/
H A DNEWS768 . Fixed bug #68424 (Add new PDO mysql connection attr to control multi
4405 . Fixed bug #53512 (NumberFormatter::setSymbol crash on bogus $attr values).
/PHP-5.5/Zend/tests/traits/
H A Dmethods_001.phpt15 public function __set($attr, $val) {
16 var_dump($attr .'==='. $val);
/PHP-5.5/ext/com_dotnet/
H A Dcom_typeinfo.c334 TYPEATTR *attr; in php_com_locate_typeinfo() local
337 ITypeInfo_GetTypeAttr(coinfo, &attr); in php_com_locate_typeinfo()
339 for (i = 0; i < attr->cImplTypes; i++) { in php_com_locate_typeinfo()
359 ITypeInfo_ReleaseTypeAttr(coinfo, attr); in php_com_locate_typeinfo()
436 TYPEATTR *attr; in php_com_process_typeinfo() local
444 if (FAILED(ITypeInfo_GetTypeAttr(typeinfo, &attr))) { in php_com_process_typeinfo()
449 if (id_to_name == NULL || attr->typekind == TKIND_DISPATCH) { in php_com_process_typeinfo()
452 memcpy(guid, &attr->guid, sizeof(GUID)); in php_com_process_typeinfo()
462 guidstring = php_com_string_from_clsid(&attr->guid, codepage TSRMLS_CC); in php_com_process_typeinfo()
474 for (i = 0; i < attr->cFuncs; i++) { in php_com_process_typeinfo()
[all …]
/PHP-5.5/ext/dom/
H A Dconfig.m421 PHP_NEW_EXTENSION(dom, [php_dom.c attr.c document.c domerrorhandler.c \
H A Dconfig.w328 EXTENSION("dom", "php_dom.c attr.c document.c domerrorhandler.c \
H A Ddom.dsp98 SOURCE=.\attr.c
H A Delement.c336 xmlNodePtr attr; in PHP_FUNCTION() local
346 if (attr) { in PHP_FUNCTION()
347 switch (attr->type) { in PHP_FUNCTION()
349 value = xmlNodeListGetString(attr->doc, attr->children, 1); in PHP_FUNCTION()
404 if (attr != NULL) { in PHP_FUNCTION()
405 switch (attr->type) { in PHP_FUNCTION()
424 if (!attr) { in PHP_FUNCTION()
746 xmlAttr *attr; in PHP_FUNCTION() local
844 if (attr != NULL && attr->type != XML_ATTRIBUTE_DECL) { in PHP_FUNCTION()
1064 xmlNodePtr attr; in PHP_FUNCTION() local
[all …]
H A Dphp_dom.c1511 xmlAttrPtr attr; in dom_normalize() local
1535 attr = child->properties; in dom_normalize()
1536 while (attr != NULL) { in dom_normalize()
1537 dom_normalize((xmlNodePtr) attr TSRMLS_CC); in dom_normalize()
1538 attr = attr->next; in dom_normalize()
/PHP-5.5/ext/dom/examples/
H A Ddom1.php45 $attr = $rootnode->setAttribute("src", "picture.gif"); variable
46 $attr = $rootnode->getAttribute("src"); variable
47 print_r($attr);
51 $attr = $rootnode->getAttributeNode("src"); variable
52 print_node($attr);
55 $attr = $rootnode->removeAttribute("src"); variable
56 print "Removed " . $attr . " attributes.\n";
/PHP-5.5/ext/dom/tests/
H A DDOMAttr_construct_error_001.phpt10 $attr = new DOMAttr();
H A DDOMAttr_name_basic_001.phpt10 $attr = new DOMAttr('category', 'books');
11 print $attr->name;
H A DDOMAttr_ownerElement_error_001.phpt14 $attr = $root->setAttribute('category', 'books');
17 var_dump($attr->ownerElement);
H A DDOMAttr_value_basic_001.phpt10 $attr = new DOMAttr('category');
11 print $attr->value."\n";
H A DDOMAttr_value_basic_002.phpt10 $attr = new DOMAttr('category');
11 $attr->value = 1;
12 print $attr->value;
H A DDOMDocument_createAttribute_error.phpt10 $attr = $dom->createAttribute(0);
H A DDOMDocument_createAttribute_variation.phpt9 $attr = $dom->createAttribute('string');
10 echo get_class($attr);
H A DDOMDocument_schemaValidateSource_addAttrs.phpt12 $doc->load(dirname(__FILE__)."/book-attr.xml");
H A DDOMDocument_schemaValidateSource_missingAttrs.phpt12 $doc->load(dirname(__FILE__)."/book-attr.xml");
H A DDOMDocument_schemaValidate_addAttrs.phpt12 $doc->load(dirname(__FILE__)."/book-attr.xml");
H A DDOMDocument_schemaValidate_missingAttrs.phpt12 $doc->load(dirname(__FILE__)."/book-attr.xml");
H A DDOMDocument_strictErrorChecking_variation.phpt21 $attr = $doc->createAttribute(0);
38 $attr = $doc->createAttribute(0);
H A Dbug37456.phpt14 $attr = $root->setAttribute('bar', 'newval');
15 print $attr->nodeValue;
H A Dbug44648.phpt14 $attr = new DOMAttr('@acb', '123');
15 $root->setAttributeNode($attr);
H A Dbug45251.phpt21 foreach ($bbb->attributes as $attr)
23 $ccc->setAttributeNode($attr);
26 echo $attr->parentNode->localName;
H A Dbug47848.phpt12 $fromdom->loadXML('<data xmlns:ai="http://altruists.org" ai:attr="namespaced" />');
14 $attr= $fromdom->firstChild->attributes->item(0);
16 $att = $aDOM->importNode($attr);
18 $aDOM->documentElement->appendChild($aDOM->importNode($attr, true));
25 <f2f:a xmlns:f2f="http://friend2friend.net/" xmlns:ai="http://altruists.org" ai:attr="namespaced"/>

Completed in 73 milliseconds

1234