get attribute values with php dom

surlarprensi

New Member
I try to get some attiributue values. But have no chance. Below yo can see my code and explanation. How to get duration, file etc.. values?\[code\]$url="http://www.some-url.ltd"; $dom = new DOMDocument; @$dom->loadHTMLFile($url); $xpath = new DOMXPath($dom); $the_div = $xpath->query('//div[@id="the_id"]'); foreach ($the_div as $rval) { $the_value = http://stackoverflow.com/questions/10541286/trim($rval->getAttribute('title')); echo $the_value; }\[/code\]The output below:\[code\]{title:'title', description:'description', scale:'fit',keywords:'', file:'http://xxx.ccc.net/ht/2012/05/10/419EE45F98CD63F88F52CE6260B9E85E_c.mp4', type:'flv', duration:'24', screenshot:'http://xxx.ccc.net/video/2012/05/10/419EE45F98CD63F88F52CE6260B9E85E.jpg?v=1336662169', suggestion_path:'/videoxml/player_xml/61319', showSuggestions:true, autoStart:true, width:412, height:340, autoscreenshot:true, showEmbedCode:true, category: 1, showLogo:true }\[/code\]How to get duration, file etc.. values?
 
Back
Top