[PHP][PROBLEM][ERROR][PROBLEMA] :
Deprecated: Assigning the return value of new by reference is deprecated in tuarchivo.php
Deprecated: Assigning the return value of new by reference is deprecated in C:\xampp\htdocs\codeka2\fpdf\Numbers\Words.php on line 120
[SOLUCIONADO][SOLVED] :
Buscamos la linea 120
Encontramos: Es código obsoleto.
@$obj =& new $classname;
Cambiamos : Nueva sintaxis.
@$obj =new $classname;
Publicar un comentario