Is there any way to reset all static properties of a particular class?(有没有办法重置特定类的所有静态属性?)
问题描述
您可能知道,静态属性使测试变得困难.有没有办法将特定类的所有静态属性重置回初始状态?理想情况下,这不需要为每个类自定义代码,但可以通过继承以一般方式使用,或者完全从类外部使用.
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.
这篇关于有没有办法重置特定类的所有静态属性?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:有没有办法重置特定类的所有静态属性?
基础教程推荐
- Libpuzzle 索引数百万张图片? 2022-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- 在多维数组中查找最大值 2021-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- 超薄框架REST服务两次获得输出 2022-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01