Comunidad de diseño web y desarrollo en internet online

No me funcionan variables en POO

Citar            
MensajeEscrito el 14 Ago 2010 06:45 pm
Quiero hacer algo tan simple como esto, pero sale error:

Código PHP :

class FrontController{   

   public $hola;   
   
   function main(){       
      include "View.php";      
   }

   function __construct(){
      $this->$hola = "hola";
...


Código :

Notice: Undefined variable: hola in C:\wamp\www\AoITutorials\Controller.php on line 12

Por mayid

17 de clabLevel



 

opera
Citar            
MensajeEscrito el 14 Ago 2010 07:04 pm
Es asi:

Código PHP :

$this->hola


En tu código lo que estas haciendo es usar variable de variables y eso es otra cosa...

Código PHP :

<?php
$hola = "Hola Mundo";
$variable = "hola";
echo $$variable; // imprime el contenido de la variable $hola, es decir, "Hola Mundo";
?>


saludos

Por Maikel

BOFH

5575 de clabLevel

22 tutoriales
5 articulos

Genero:Masculino   Team Cristalab

Claber de baja indefinida

firefox
Citar            
MensajeEscrito el 14 Ago 2010 07:06 pm
Ah! Mil gracias. Ni me di cuenta.

Por mayid

17 de clabLevel



 

opera

 

Cristalab BabyBlue v4 + V4 © 2011 Cristalab
Powered by ClabEngines v4, HTML5, love and ponies.