PHP 中的静态属性
静态属性何时初始化,据我所知,其他成员属性是在创建对象时初始化的。
谢谢
When are static properties initialized, as I know other member properties are initialized when object is created.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
/ http://php.net/manual/en/language.oop5.static .php
因此,它们在声明后就可用。
/ http://php.net/manual/en/language.oop5.static.php
So, they are available after they have been declared.
静态属性?你的意思是静态变量还是静态方法?
无论哪种方式,它们都会在解析脚本或定义类时初始化。
Static properties? Do you mean static variables or methods?
Either way, they are initialized when the script is parsed, or the class is defined.