php Library
XML_extractAttribute
Keine Erläuterungen gefunden.
<?php function XML_extractAttribute($xml,$attribute){ /* STRPOS gives first occurence of substring */ $attribute=strtolower($attribute); $startString=$attribute."=\""; $attributeLength = strlen($startString); $endString="\""; $startPos=strpos($xml,$startString); if ($startPos===false){ return false; }else{ $residuum=substr($xml,$startPos+$attributeLength,strlen($xml)-$startPos-$attributeLength); $endPos=strpos($residuum,$endString); $attribute=substr($residuum,0,$endPos); return $attribute; } } ?>
Index of Library
Der gesamte Sourcecode darf gemäß GNU General Public License weiterverbreitet werden.