Ver Mensaje Individual
  #1 (permalink)  
Antiguo 01/12/2014, 19:42
LinkServ
 
Fecha de Ingreso: junio-2014
Mensajes: 18
Antigüedad: 9 años, 10 meses
Puntos: 0
Pregunta Fatal error: Method name must be a string

Hola.

Alguien puede decirme como corregir el siguiente error:

Fatal error: Method name must be a string in ... on line 9

Mi código es el siguiente:

Código PHP:
Ver original
  1. <?
  2. class color {
  3.     function colorea($texto) {
  4.         $x = $texto;
  5.         return $x;
  6.     }
  7. }
  8.  
  9. echo $color->$colorea("test");
  10. ?>

Gracias.