如何在 PHP 中创建 C# 的模拟 '私有常量 int '和'私有常量字节'?
因此,在 C# 中,我创建了类似
private const int HEADER_LENGTH = 13;
private const byte SIGNATURE1 = 0x46;
如何在 PHP 中创建其类似物的内容?
So in C# I create something like
private const int HEADER_LENGTH = 13;
private const byte SIGNATURE1 = 0x46;
How to create its analog in PHP?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不。最接近的是:
哪一个不是私有的,
哪一个不是最终的。您也不能限制变量的类型。 PHP 中也没有 1 字节类型 - 您应该使用整数或长度为 1 的字符串。
您可以通过覆盖
get_property_ptr_ptr
和write_property 对象处理程序,但不仅仅适用于 PHP。
No. The closest things are:
which is not private and
which is not final. You cannot also constrict the type of the variable. There is also no 1-byte type in PHP – you should use an integer for that or a string with length 1.
You can implement something like that internally by overriding the
get_property_ptr_ptr
andwrite_property
object handlers, but not with only PHP.