Re: How to find <img> tag and get src of image

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Use preg_match_all

Think this will work. But i'm for sure no regular expresion guru :)

preg_match_all("/src=(.*)\040/i", $Text, $Result);
print_r($Result);

Gr,
Thijs

> Hi everybody!
> I want to get src of image  form a $text, I have a below text
>
> $Text = <table border="1" cellpadding="3%" cellspacing="3%" width="100%">
>    <tr>    <td width="20%">
>      <img align="middle" border="0" id=userupload/78/Autumn.jpg
> src=userupload/78/Autumn.jpg onClick="javascript:ViewImage(this.id);"
> width="100" height="100" >
>     </td>
>    <td></td></tr>   </table>
>   </td>
>   <td class="frame2_middle_right"></td>
>  </tr>
>  <tr>
>   <td class="frame2_bottom_left"></td>
>      <td class="frame2_bottom_center">
>      </td>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux