Codeigniter how to access class variables
- by Obay
I thought this was going to be a no-brainer but I can't seem to access member variables:
class MyObject extends Controller {
private $START_OF_WEEK = 1;
/* constructor here */
function index() {
echo $this->$START_OF_WEEK;
}
}
echo $this->$START_OF_WEEK; says Cannot access empty property
How do I access member variables? Or... how do I declare them correctly?