I have this variable in class: (this works)
public $logFname = '_fail.log';
But I need this: (doesn't work)
public $logFname = date('d').'_fail.log';
Why?
|
I have this variable in class: (this works)
But I need this: (doesn't work)
Why? |
||||
|
|
|
You can't use a function when you define a variable. You should initialize it somewhere. You should do that like this:
|
|||||
|
You can not use any function when you declare a variable in a class. |
|||
|
|
|
You should first declare the variable and then define it.
Then Use it like:
|
||||
|
|