Jump to content

[SOLVED] Problem with preg_match


papaface

Recommended Posts

Hello,

I am having a problem with this:

if(preg_match('|href=[\'"]([^\'"]+)[\'"]><strong>Download Link</strong>|i',$html,$match))

It doesnt seem to be returning the value of href in this code:

<p>>> <a href="http://cache.googlevideo.com/get_video?video_id=FI76sKLMkMU"><strong>Download Link</strong> </a> <<  Right-click "Save Target As" OR copy and paste the link into your download manager.</p>

 

Can someone help me with the correct syntax?

Link to comment
Share on other sites

Yeah, I don't get anything returned.

This is the small section of code:

	$url = str_replace("&","?",$url);
$html= bot_getTransfer("http://***.com/***.php?mode=1&url=".$url."&sid=".(mt_rand(0,1000000)/1000000));
//echo $html;
if(preg_match('|href=[\'"]([^\'"]+)[\'"]><strong>Download Link</strong>|i',$html,$match))
{
	return substr($match[1]);
}
else
{
	return "video not found!";
}

I try and print out $match by:

	$url = str_replace("&","?",$url);
$html= bot_getTransfer("http://***.com/***.php?mode=1&url=".$url."&sid=".(mt_rand(0,1000000)/1000000));
//echo $html;
if(preg_match('|href=[\'"]([^\'"]+)[\'"]><strong>Download Link</strong>|i',$html,$match))
{
print_r($match);
	//return substr($match[1]);
}
else
{
print_r($match);
	return "video not found!";
}

But nothing is returned, only Array(  ) :(

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.