Ver Mensaje Individual
  #9 (permalink)  
Antiguo 24/03/2010, 12:30
Hidek1
Colaborador
 
Fecha de Ingreso: octubre-2009
Ubicación: Tokyo - Japan !
Mensajes: 3.867
Antigüedad: 14 años, 6 meses
Puntos: 334
Respuesta: Obtener url de un BBcode

para eso esta preg_match_all()

Código PHP:
Ver original
  1. <?php
  2. $texto = "
  3. texto intermedio1
  4. [img=http://www.web.com/imagen1.jpg]
  5. texto intermedio2
  6. [img=http://www.web.com/imagen2.jpg]
  7. texto intermedio3
  8. [img=http://www.web.com/imagen3.jpg]
  9. texto intermedio4
  10. [img=http://www.web.com/imagen4.jpg]
  11. texto intermedio5
  12. [img=http://www.web.com/imagen5.jpg]
  13. texto intermedio6
  14. [img=http://www.web.com/imagen6.jpg]
  15. ";
  16. preg_match_all('/\[img=([^\]]+)\]/is', $texto, $matches);
  17. print_r($matches[1]);
  18. ?>

saludos!
__________________
More about me...
~ @rhyudek1
~ Github