Ver Mensaje Individual
  #2 (permalink)  
Antiguo 02/08/2011, 19:27
Avatar de andresdzphp
andresdzphp
Colaborador
 
Fecha de Ingreso: julio-2011
Ubicación: $this->Colombia;
Mensajes: 2.749
Antigüedad: 13 años, 5 meses
Puntos: 793
Respuesta: str_remplace remplazar codigo

Nadie respondió, tal vez esto te sirva.

Código PHP:
Ver original
  1. <?php
  2.  
  3. $t = '[img width="Variable 1" height="variable 2"]Hola mundo !!![/img]';
  4.  
  5. preg_match('/.*"\]([^\[\/]*)/i', $t, $m);
  6.  
  7. echo $m[1];