有没有办法重置特定类的所有静态属性? [英] Is there any way to reset all static properties of a particular class?

查看:41
本文介绍了有没有办法重置特定类的所有静态属性?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

您可能知道,静态属性使测试变得困难.有没有办法将特定类的所有静态属性重置回初始状态?理想情况下,这不需要为每个类自定义代码,但可以通过继承以一般方式使用,或者完全从类外部使用.

Static properties make testing hard as you probably know. Is there no way to reset all static properties of a particular class back to their initial state? Ideally this would not require custom code for each class, but could be used in a general way by inheritance, or from outside of the class completely.

请不要回复诸如不要使用静态属性"之类的内容.谢谢.

Please do not reply with something like, "don't use static properties". Thanks.

推荐答案

没有.PHP 不保留该信息.

No. PHP does not preserve that information.

我在玩弄 ReflectionClass::getDefaultProperties::getStaticProperties,但它们只返回当前状态.

I was toying around with ReflectionClass and ::getDefaultProperties and ::getStaticProperties, but they only return the current state.

您必须使用默认值创建一个数组,然后手动遍历它们并重置您的类属性.

You will have to create an array with the default values, then manually foreach over them and reset your class attributes.

这篇关于有没有办法重置特定类的所有静态属性?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆