Jump to content

[SOLVED] a little help using preg match


djtozz

Recommended Posts

lets say  I want I want to grab the filename (last part)  from following url format:

 

mysite.com/dl/10587125/09c6247/filename.html

 

then i was hoping following code should do it:

 

preg_match("/mysite\.com\/dl\/\d+\/w+\/(.+)/",$words,$match);

 

But this gives me a blank result insteed of 'filename.html"

 

Am I missing something?

 

Link to comment
Share on other sites

Do you have to use regex?

 

$path = "mysite.com/dl/10587125/09c6247/filename.html"

$filename = basename($path);

 

Thanks for your help,

it is actually part of a code to calculate  "$caption"

The first part of the code works like a charm (type==1 rapidshare)

 

The second part (type==2 hotfile) gives me a a empty record, not sure what's wrong..

 

$caption='';
			if($type==1)
			{
				$words=$links[$j];
				preg_match("/rapidshare\.com\/files\/\d+\/(.+)/",$words,$match);
				unset($words);
				$words=$match[1];
				unset($match);
				$words=preg_split("/[_\.\-]/",$words);
				$lastword=array_pop($words);
				if($lastword=="html") array_pop($words);
				$words=implode(" ",$words);
				$words=preg_replace("/\s{2,}/"," ",$words);
				$caption=mysql_real_escape_string($words);
				unset($words);

			}

			if($type==2)
			{
				$words=$links[$j];
				preg_match("/hotfile\.com\/dl\/\d+\/w+\/(.+)/",$words,$match);
				unset($words);
				$words=$match[2];
				unset($match);
				$words=preg_split("/[_\.\-]/",$words);
				$lastword=array_pop($words);
				if($lastword=="html") array_pop($words);
				$words=implode(" ",$words);
				$words=preg_replace("/\s{2,}/"," ",$words);
				$caption=mysql_real_escape_string($words);
				unset($words);
			}

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.