Jump to content

get src url


neorang

Recommended Posts

Hi Php masters  :)

i need to know how to get multiple image urls in a text like this:

 

blah blah blblbl <img class="image" src="showimage.php?i=47&w=4&t=scr&n=360907130665931"> bleh text text <img src="showimage.php?i=47&w=4&t=scr&n=360907130665931" align="center" whatever="whatever" > blah blah blblbh  text ....

 

actually i need to get this : showimage.php?i=47&w=4&t=scr&n=360907130665931

 

::) I'll really appreciate if anyone can quickly reply to this

thanks

Link to comment
https://forums.phpfreaks.com/topic/160500-get-src-url/
Share on other sites

Hi Php masters  :)

i need to know how to get multiple image urls in a text like this:

 

blah blah blblbl <img class="image" src="showimage.php?i=47&w=4&t=scr&n=360907130665931"> bleh text text <img src="showimage.php?i=47&w=4&t=scr&n=360907130665931" align="center" whatever="whatever" > blah blah blblbh  text ....

 

actually i need to get this : showimage.php?i=47&w=4&t=scr&n=360907130665931

 

::) I'll really appreciate if anyone can quickly reply to this

thanks

 

Not clear enough.

 

Link to comment
https://forums.phpfreaks.com/topic/160500-get-src-url/#findComment-846985
Share on other sites

<?php
$quote=' 
Hi Php masters  
i need to know how to get multiple image urls in a text like this:

blah blah blblbl <img class="image" src="showimage.php?i=47&w=4&t=scr&n=360907130665931"> bleh text text <img src="showimage.php?i=47&w=4&t=scr&n=360907130665932" align="center" whatever="whatever" > blah blah blblbh  text ....

actually i need to get this : showimage.php?i=47&w=4&t=scr&n=360907130665931

 I\'ll really appreciate if anyone can quickly reply to this
thanks';

header('Content-type: text/plain');
if(preg_match_all('/<img\s.*?src=\"(.*?)\".*?>/i',$quote,$matches))
    print_r($matches);
else
    echo 'no matches';
?>

Link to comment
https://forums.phpfreaks.com/topic/160500-get-src-url/#findComment-847023
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.