Ver Mensaje Individual
  #9 (permalink)  
Antiguo 12/09/2014, 05:37
rodrigo_temuco
 
Fecha de Ingreso: abril-2011
Ubicación: Vilcún, cerca de Temuco
Mensajes: 67
Antigüedad: 13 años
Puntos: 5
Respuesta: como hacer un str_replace al crear un PDF

¿y si ahora intentas con utf8_decode()?

foreach($this->aCols as $col){
$txt = str_replace($find, $repl, $data[$col['f']]);
$txt = utf8_decode($txt);
$this->Cell($col['w'],5,$txt,1,0,$col['a'],$fill);
}