I have a structure like this:
class DataList {
...
public function fetchData(){
...
$this = $statement->fetchAll(PDO::FETCH_CLASS,"DataList");
}
}
I want the db query result to set member variables matching field names. But I'm getting an error:
Fatal error: Cannot re-assign $this in C:\xampp\htdocs\adk3\classes\DataList.php
on line 11