Jump to content

[SOLVED] How to read please help


jeet_0077

Recommended Posts

Hi all,

I need to read some part of the website with regular expression. Here is the detail.

 

If we visit the following link:

http://eventful.com/events/jazz-dancing-love-fun-/E0-001-011459632-4

 

and in the above link we have something like

http://slurl.com/secondlife/Sweethearts/128/165

and is diffrent for different links (the first link above)

 

http://slurl.com/secondlife/    is common for all but Sweethearts/128/165 part will change every time.

 

in the source code it is as:

<li>

      <span class="faded">[Other]</span>

      <a href="http://slurl.com/secondlife/Sweethearts/128/165" rel="nofollow" class="click-offsite">Sweethearts (128, 165)</a>

</li>

 

Can someone please tell to how to grab the link

"http://slurl.com/secondlife/Sweethearts/128/165"

 

from the source code of

http://eventful.com/events/jazz-dancing-love-fun-/E0-001-011459632-4

 

Thanks

Link to comment
Share on other sites

<pre>
<?php
$content = file_get_contents('http://eventful.com/events/jazz-dancing-love-fun-/E0-001-011459632-4');
preg_match('/<span class="faded">\[Other\]<\/span>\s+<a[^>]+?href="([^"]+)/', $content, $matches);
echo $matches[1];
?>
</pre>

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.