在 PHP 类中,Python 类中的 self 相当于什么?
在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
PHP 使用
$this
作为实例的引用:有关详细信息,请参阅 http://php.net/language.oop5.basic#example-155
PHP uses
$this
as a reference to the instance:For more information, see http://php.net/language.oop5.basic#example-155
您可以在 PHP 中使用
$this->variable
:)You can use
$this->variable
in PHP :)