Tuesday 14 May 2013

Cannot access empty property in PHP

,

Error

  Cannot access empty property in Test.php on line 90

Reason 

  1. You put a dollar sign in the wrong place on a member variable.


$this->$test = 8;   // $test is wrong


Possible solution :

  1. Put your dollar sign in correct place.

 $this->test = 8;    // test is right

>

0 comments to “Cannot access empty property in PHP”

Post a Comment