Welcome Guest, Not a member yet? Register   Sign In
Variable Issues..........[Help]
#9

[eluser]n0xie[/eluser]
You can't call a function or a language construct when you declare a class property (if we talk about variables belonging to a class, we talk about class properties to avoid the confusion you have right now.)

If you want to set a class property using something like 'date' you will have to do it from within the context of a class method (we talk about class methods to avoid confusion to normal 'functions'.)

So what does that mean:
Code:
// PHP4
class MyClass {

  var $currentyear;
  var $MyVar = 'some_value';

  function MyClass()
  {
    $this->currentyear = date('Y');
  }

  function MyFunction()
  {
    echo $this->MyVar;
    echo $this->currentyear;
  }
}

// PHP 5
class MyClass {

  public $currentyear;
  public $MyVar = 'some_value';

  function __construct()
  {
    $this->currentyear = date('Y');
  }

  function MyFunction()
  {
    echo $this->MyVar;
    echo $this->currentyear;
  }
}

edit: mddd was too quick ;-)


Messages In This Thread
Variable Issues..........[Help] - by El Forum - 04-12-2010, 05:07 PM
Variable Issues..........[Help] - by El Forum - 04-13-2010, 12:16 AM
Variable Issues..........[Help] - by El Forum - 04-13-2010, 01:32 AM
Variable Issues..........[Help] - by El Forum - 04-13-2010, 01:40 AM
Variable Issues..........[Help] - by El Forum - 04-13-2010, 02:00 AM
Variable Issues..........[Help] - by El Forum - 04-13-2010, 02:03 AM
Variable Issues..........[Help] - by El Forum - 04-13-2010, 02:12 AM
Variable Issues..........[Help] - by El Forum - 04-13-2010, 02:34 AM
Variable Issues..........[Help] - by El Forum - 04-13-2010, 02:35 AM
Variable Issues..........[Help] - by El Forum - 04-13-2010, 02:36 AM
Variable Issues..........[Help] - by El Forum - 04-13-2010, 02:40 AM
Variable Issues..........[Help] - by El Forum - 04-13-2010, 03:37 AM
Variable Issues..........[Help] - by El Forum - 04-13-2010, 04:42 AM



Theme © iAndrew 2016 - Forum software by © MyBB