Extract everything between <object></object>

Reply

Join Date: Sep 2008
Posts: 33
Reputation: jyotiu is an unknown quantity at this point 
Solved Threads: 0
jyotiu jyotiu is offline Offline
Light Poster

Extract everything between <object></object>

 
0
  #1
Apr 4th, 2009
Hi all

I am using CURL to reach a page ,now i want to extract this from the page
<object classid="clsid:67DABFBF-D0AB-41fa-9C46-CC0F21721616" width="640" height="303.33333333333" codebase="http://go.divx.com/plugin/DivXBrowserPlugin.cab" id="object701207571">
                                <param name="autoPlay" value="false" />
                                <param name="custommode" value="Stage6" />
                                <param name="src" value="" />
                                <param name="movieTitle" value="Titanic" />
                                <param name="bannerEnabled" value="false" />
                                                <param name="previewImage" value="http://stagevu.com/img/thumbnail/oripmqeqzrccbig.jpg" />
                                        <embed type="video/divx" src="" width="640" height="303.33333333333" autoPlay="false" custommode="Stage6" movieTitle="Titanic" bannerEnabled="false" previewImage="http://stagevu.com/img/thumbnail/oripmqeqzrccbig.jpg" pluginspage="http://go.divx.com/plugin/download/" id="embed701207571"></embed>
                        </object>
please help
Reply With Quote Quick reply to this message  
Join Date: Sep 2007
Posts: 1,470
Reputation: cwarn23 has a spectacular aura about cwarn23 has a spectacular aura about cwarn23 has a spectacular aura about 
Solved Threads: 136
cwarn23's Avatar
cwarn23 cwarn23 is offline Offline
Nearly a Posting Virtuoso

Re: Extract everything between <object></object>

 
0
  #2
Apr 4th, 2009
Well preg match will do the job. Try the following:
  1. <?
  2. preg_match_all('/\<object(.*)\<\/object\>/is',$page_contents,$tmp);
  3. $matches=$tmp[0]; unset($tmp);
  4.  
  5. //display the first one on the page
  6. echo $matches[0];
  7. ?>
Try not to bump 10 year old threads as it can be really annoying.
Like php then read my website at http://syntax.cwarn23.net/
Star-Trek-Atlantis - now that's what I call a movie ^_^
My favourite PC. - MacGyver Fan
Bad english note: dis-iz-2b4u
Reply With Quote Quick reply to this message  
Reply

This thread is more than three months old.
Perhaps start a new thread instead?
Message:


Thread Tools Search this Thread



About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC