Hey orada ben bir sınıfın bir işlev içinde aşağıdaki kodu çalıştığınızda ben anlayamadım bazı php hata üretir gibi bu nasıl yapılır merak ediyorum
public $tasks;
$this->tasks = new tasks($this);
$this->tasks->test();
S: sınıfın başlatılması bir parametre olarak ya bu $ gerektirir neden bilmiyorum
teşekkürler
class admin
{
function validate()
{
if(!$_SESSION['level']==7){
barMsg('YOU\'RE NOT ADMIN', 0);
return FALSE;
}else{
**public $tasks;** // The line causing the problem
$this->tasks = new tasks(); // Get rid of $this->
$this->tasks->test(); // Get rid of $this->
$this->showPanel();
}
}
}
class tasks
{
function test()
{
echo 'test';
}
}
$admin = new admin();
$admin->validate();