Welcome Guest, Not a member yet? Register   Sign In
why preg_match is not work i want to pick title , duration , src
#1
Lightbulb 

PHP Code:
       //Title
 
                   if(preg_match('/"previewTitle">(.*?)"/'$match$matches_title)) {
 
                       $video['title']    = htmlspecialchars_decode(strip_tags(stripslashes($matches_title[1])), ENT_QUOTES);
 
                   } else {
 
                       $this->errors[]    = 'Failed to get video title for '.$video['url'].'!';
 
                       if (!$this->debug) continue;
 
                       else $debug_e[] = 'TITLE';
 
                   
PHP Code:
     //Duration
 
                   if(preg_match('/label">(.*?)</'$match$matches_duration)) {
 
                       $video['duration'] = duration_to_seconds($matches_duration[1]);
 
                   } else {
 
                       $this->errors[]    = 'Failed to get video duration for '.$video['url'].'!';
 
                       if (!$this->debug) continue;
 
                       else $debug_e[] = 'DURATION';
 
                   

PHP Code:
           //Title
 
                   if(preg_match('/src="(.*?)"/'$match$matches_title)) {
 
                       $video['src']    = htmlspecialchars_decode(strip_tags(stripslashes($matches_title[1])), ENT_QUOTES);
 
                   } else {
 
                       $this->errors[]    = 'Failed to get video src for '.$video['url'].'!';
 
                       if (!$this->debug) continue;
 
                       else $debug_e[] = 'TITLE';
 
                   

[Image: PW4OgrV.png]
Reply
#2

Maybe this will help you.

PHP using preg_match to get title from article
What did you Try? What did you Get? What did you Expect?

Joined CodeIgniter Community 2009.  ( Skype: insitfx )
Reply
#3

(06-20-2019, 03:26 AM)InsiteFX Wrote: Maybe this will help you.

PHP using preg_match to get title from article

I don't want import <title> tag HTML
Reply
#4

If you read the whole page they are giving different ways of getting it.
What did you Try? What did you Get? What did you Expect?

Joined CodeIgniter Community 2009.  ( Skype: insitfx )
Reply




Theme © iAndrew 2016 - Forum software by © MyBB