I don't want a search for the string value to be case insensitive. I want to do a search for the node without regard for case sensitivity. If the XML looks like this:
<items>
<ITEM>My text!</ITEM>
</items>
I need something like this to work:
$someXmlDoc->xpath("/items/item/text()");
Currently, only this works:
$someXmlDoc->xpath("/items/ITEM/text()");