Ich möchte in einen Simple XML Attribute einen linlink Wert auslesen wie mache ich dass?
Ich brauche den href link.
Wie komme ich zu href?
Zeigt nichts an.
PHP-Code:
<link rel='alternate' type='text/html' href='http://www.youtube.com/channel/........./videos'/>
PHP-Code:
Array ( [0] => SimpleXMLElement Object ( [@attributes] => Array ( [rel] => alternate [type] => text/html [href] => http://www.youtube.com/.... )
PHP-Code:
foreach ($xml->entry->attributes() as $inhalt)
{
print_r($inhalt);
}
Kommentar