Tagged Questions
0
votes
3answers
74 views
constructor and this pointer
The question is: after declaration "private $json" should i use in constructor $json or $this->json ?
class Controller{
private $json;
private $data;
function __construct(){
...
0
votes
1answer
32 views
PHP Class properties being overwritten when I store to array
There is probably a very simple explanation for this, but I've had this code working for months, and now all of a sudden today it doesn't work.
I retrieve all the rows from a table. I have and ...
1
vote
2answers
638 views
PHP assign $this of another class
I have been wondering is it possible to assign another object to $this?
In CodeIgniter I am calling another controller from main controller.
application/controllers/module.php
Class Module extends ...