PHP 类值
我正在开发一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当然,您可以
在构造函数中执行此操作(这取决于您的具体情况,这是否是可行的方法):
或者如果您有一个设置函数:
Sure you can
or do it in the constructor (this depends on your specific case whether this is the way to go):
Or if you have a set function: