PHP 类值

发布于 2024-12-26 16:49:28 字数 218 浏览 0 评论 0原文

我正在开发一个 PHP 类,该类的必填字段之一是 (DropoffType) 答案是REGULARPICKUP。 我可以在类中编写此内容并将“=”添加到REGULARPICKUP中吗?

例子:

protected $DropoffType = 'REGULARPICKUP';

I'm working on a PHP Class, one of the required fields for the Class is (DropoffType)
The answer to that is REGULARPICKUP.
Can I write this inside the class and put "=" to the REGULARPICKUP?

Example:

protected $DropoffType = 'REGULARPICKUP';

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

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

发布评论

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

评论(1

香草可樂 2025-01-02 16:49:28

当然,您可以

class MyClass
{
    protected $DropoffType = 'REGULARPICKUP';
}

在构造函数中执行此操作(这取决于您的具体情况,这是否是可行的方法):

class MyClass
{
    protected $DropoffType;

    public function __construct($Dropofftype = 'REGULARPICKUP')
    {
        $this->DropoffType = $Dropofftype;
    }
}

或者如果您有一个设置函数:

class MyClass
{
    protected $DropoffType;

    public function setDropoffType($Dropofftype = 'REGULARPICKUP')
    {
        $this->DropoffType = $Dropofftype;
    }
}

Sure you can

class MyClass
{
    protected $DropoffType = 'REGULARPICKUP';
}

or do it in the constructor (this depends on your specific case whether this is the way to go):

class MyClass
{
    protected $DropoffType;

    public function __construct($Dropofftype = 'REGULARPICKUP')
    {
        $this->DropoffType = $Dropofftype;
    }
}

Or if you have a set function:

class MyClass
{
    protected $DropoffType;

    public function setDropoffType($Dropofftype = 'REGULARPICKUP')
    {
        $this->DropoffType = $Dropofftype;
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文