如何检查变量是枚举还是案例?
PHP中有很多类型检查功能(is_string
,is_Resource
等),但是没有功能可以检查变量是枚举还是枚举。如何正确检查它?
There is a lot of type checking functions in PHP (is_string
, is_resource
etc) but there is no function to check if variable is an Enum or a Case. How to check it properly?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以检查它是否实现 unitenum”> unitenum 接口。
根据PHP手册,此接口专门用于类型检查。
You can check that it implements the UnitEnum interface.
According to the PHP manual, this interface exists specifically for type checking.