在 PHP 类中,Python 类中的 self 相当于什么?

发布于 2024-11-29 15:39:22 字数 207 浏览 1 评论 0原文

在 PHP 中,我怎样才能从 Python 中实现这样的事情呢?

class CrowdProcess():
    def __init__(self,variable):
        self.variable = variable

    def otherfunc(self):
        print self.variable

In PHP, how can I achieve something like this from Python?

class CrowdProcess():
    def __init__(self,variable):
        self.variable = variable

    def otherfunc(self):
        print self.variable

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

却一份温柔 2024-12-06 15:39:22

PHP 使用 $this 作为实例的引用:

class CrowdProcess
{
    public $variable;

    public function __construct($variable)
    {
        $this->variable = $variable;
    }

    public function otherfunc()
    {
        echo $this->variable, PHP_EOL;
    }
}

有关详细信息,请参阅 http://php.net/language.oop5.basic#example-155

PHP uses $this as a reference to the instance:

class CrowdProcess
{
    public $variable;

    public function __construct($variable)
    {
        $this->variable = $variable;
    }

    public function otherfunc()
    {
        echo $this->variable, PHP_EOL;
    }
}

For more information, see http://php.net/language.oop5.basic#example-155

毁梦 2024-12-06 15:39:22

您可以在 PHP 中使用 $this->variable :)

You can use $this->variable in PHP :)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文