如何在 PHP4 中声明公共静态类字段
PHP4中公共静态类字段有解决方案吗
var static $field = null;
Parse error: syntax error, unexpected T_STATIC, expecting T_VARIABLE
Do you have the solutions that public static class fields in PHP4
var static $field = null;
Parse error: syntax error, unexpected T_STATIC, expecting T_VARIABLE
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
PHP 4 本身不支持静态属性。您能做的最好的事情就是在方法内部实现静态变量。也许以下链接对您有用:
http://adam.bregenzer.net/php/static_class_properties
PHP 4 didn't support static properties natively. The best you could do was implement static variables inside of your methods. Maybe the following link is useful for you:
http://adam.bregenzer.net/php/static_class_properties