vividona Posted June 27, 2011 Share Posted June 27, 2011 How can I catch image bbcode from the first point of text. eg [img=http://www.xxxxxxx.xxxxx/xxxxx.jpg] text here text here text here text here text here text here text here text here text here text here text here text here text here text here text here text here text here text here text here text here text here text here text here text here text here text here text here Quote Link to comment https://forums.phpfreaks.com/topic/240499-catch-image-from-text/ Share on other sites More sharing options...
TeNDoLLA Posted June 27, 2011 Share Posted June 27, 2011 You want the image url from it or? $str = '[img=http://www.xxxxxxx.xxxxx/xxxxx.jpg] text here text here'; preg_match_all('/\[img\](.*)\[\/img\]/', $str, $results); echo '<pre>' . print_r($results) . '</pre>'; Quote Link to comment https://forums.phpfreaks.com/topic/240499-catch-image-from-text/#findComment-1235294 Share on other sites More sharing options...
vividona Posted June 27, 2011 Author Share Posted June 27, 2011 You want the image url from it or? $str = '[img=http://www.xxxxxxx.xxxxx/xxxxx.jpg] text here text here'; preg_match_all('/\[img\]http://(.*)\[\/img\]/', $str, $results); echo '<pre>' . print_r($results) . '</pre>'; Hi, thank you so much, it works fine but the output is [img=http://www.xxxxxxx.xxxxx/xxxxx.jpg]http://www.xxxxxxx.xxxxx/xxxxx.jpg how can I made it just [img=http://www.xxxxxxx.xxxxx/xxxxx.jpg] Quote Link to comment https://forums.phpfreaks.com/topic/240499-catch-image-from-text/#findComment-1235299 Share on other sites More sharing options...
TeNDoLLA Posted June 27, 2011 Share Posted June 27, 2011 I just tested it and it gives just fine output: Array ( [0] => Array ( [0] => [img=http://www.xxxxxxx.xxxxx/xxxxx.jpg] ) [1] => Array ( [0] => http://www.xxxxxxx.xxxxx/xxxxx.jpg ) ) Just use the first array element to get the tags with the url. Or use the second array element to get only the URL. I am pretty sure you are looping each array element throught and echoing them. Quote Link to comment https://forums.phpfreaks.com/topic/240499-catch-image-from-text/#findComment-1235303 Share on other sites More sharing options...
vividona Posted June 27, 2011 Author Share Posted June 27, 2011 Hi TeNDoLLA now everything ok thx Quote Link to comment https://forums.phpfreaks.com/topic/240499-catch-image-from-text/#findComment-1235305 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.