gpt4 book ai didi

php - 在 PHP 类中,python 类中的 self 等价于什么?

转载 作者:行者123 更新时间:2023-11-28 19:58:42 24 4
gpt4 key购买 nike

在 PHP 中,我怎样才能从 Python 实现类似的东西?

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

def otherfunc(self):
print self.variable

最佳答案

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 - 在 PHP 类中,python 类中的 self 等价于什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7084564/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com