在 PHP 中调用另一个类中的一个类

2022-08-31 00:31:20

嘿,我想知道这是如何完成的,因为当我在类的函数中尝试以下代码时,它会产生一些我无法捕获的php错误

public $tasks;
$this->tasks = new tasks($this);
$this->tasks->test();

我不知道为什么类的启动需要$this作为参数:S

谢谢

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();

答案 1

不能在类的方法(函数)中声明公共$tasks。如果您不需要在该方法之外使用 tasks 对象,则只需执行以下操作:

$tasks = new Tasks($this);
$tasks->test();

您只需要使用“$this->”,当您使用您希望在整个类中可用的变量时。

您的两个选项:

class Foo
{
    public $tasks;

    function doStuff()
    {
        $this->tasks = new Tasks();
        $this->tasks->test();
    }

    function doSomethingElse()
    {
        // you'd have to check that the method above ran and instantiated this
        // and that $this->tasks is a tasks object
        $this->tasks->blah();
    }

}

class Foo
{
    function doStuff()
    {
        $tasks = new tasks();
        $tasks->test();
    }
}

使用您的代码:

class Admin
{
    function validate()
    {
        // added this so it will execute
        $_SESSION['level'] = 7;

        if (! $_SESSION['level'] == 7) {
            // barMsg('YOU\'RE NOT ADMIN', 0);
            return FALSE;
        } else {
            $tasks = new Tasks();
            $tasks->test();
            $this->showPanel();
        }
    }

    function showPanel()
    {
        // added this for test
    }
}
class Tasks
{
    function test()
    {
        echo 'test';
    }
}
$admin = new Admin();
$admin->validate();

答案 2

你的问题在于这行代码:

public $tasks;
$this->tasks = new tasks();
$this->tasks->test();
$this->showPanel();

关键字用于类的定义,而不是类的方法。在php中,你甚至不需要在类中声明成员变量,你可以这样做,它就会为你添加。public$this->tasks=new tasks()


推荐