Ver Mensaje Individual
  #5 (permalink)  
Antiguo 24/11/2014, 21:13
Avatar de satanson123
satanson123
 
Fecha de Ingreso: julio-2012
Mensajes: 217
Antigüedad: 12 años, 3 meses
Puntos: 2
Respuesta: extraer imagen usando preg_match_all con bbcode

Cita:
Iniciado por pateketrueke Ver Mensaje
Observa las diferencias:
Código PHP:
$content 'algo [img] http://enlace de la imagen/untitled.png [/img]';

// SIN GRUPO DE CAPTURA
preg_match_all('/\[img\].*\[\/img\]/i',$content,$matches);
var_dump($matches);

// CON GRUPO DE CAPTURA
preg_match_all('/\[img\](.*)\[\/img\]/i',$content,$matches);
var_dump($matches); 
Exacto ya entiendo que los parentecis es para dividir en grupos, eso no lo sabia y funciono. Gracias.