Jump to content

PHP String searching


jk11uk

Recommended Posts

Hi

 

i have a php script that takes a url and loads all the code from that page into a variable.

 

I then want to scan through that variable and pick out the first 5 URLs. So i would need something which looks for the first 5 times that <a href="http://........someurl....."> happens and store the occurances into different variables.

 

 

can anyone work it out? i'm very stuck  ???

Link to comment
Share on other sites

i dont understand how that would work. so it strips the data of the <a  and </a> tags. but then the explode would not find any <a things to divide the string by, as you have stripped them?

 

Does anyone know the regex code that would do it?

Link to comment
Share on other sites

<pre>
<?php

$data = <<<DATA
<a href="http://www.one.com">1</a>
<a href="http://www.two.com">2</a>
<a href="http://www.three.com">3</a>
<a href="http://www.four.com">4</a>
<a href="http://www.five.com">5</a>
<a href="http://www.six.com">6</a>
DATA;
preg_match_all('%<a\s.+?</a>%s', $data, $matches);
array_splice($matches[0], 5);
print_r($matches);
?>
</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.