PHP8.1中gettype()和get_debug_type()的区别?

发布于 2025-01-15 07:15:31 字数 240 浏览 0 评论 0原文

gettype()get_debug_type() 之间的确切区别是什么?

官方文档描述了它,但对我来说太模糊了:

  • gettype(): 获取变量的类型或对象名称
  • get_debug_type()获取变量的类型

What is the exact difference between gettype() and get_debug_type()?

Official documentation describes it, but too vague for me:

  • gettype(): Get the type or object name of a variable
  • get_debug_type(): Get the type of a variable

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

酒浓于脸红 2025-01-22 07:15:32

这两个函数通常用于变量调试以及获取给定变量类型

主要区别是:

get_debug_type()gettype() 的不同之处在于它返回的类型名称与实际使用情况,而不是
由于历史原因而出席的人。


gettype() 返回以下可能的字符串值之一:

  • “boolean”
  • “integer”
  • “double”(由于历史原因“double”是
    在浮点数的情况下返回,而不仅仅是“浮点数”)
  • “字符串”
  • “数组”
  • “对象”
  • “资源”
  • “资源(关闭)”自 PHP 7.2.0 起“NULL”
  • “未知类型”

get_debug_type() 返回以下可能的字符串值之一:

类型 + 状态返回值
null"null"
布尔值(true 或 false)"bool"
整数"int"
浮点数“float”
字符串“string”
数组“array”
资源“资源(资源名称)”
资源(已关闭)“资源(已关闭)”
来自命名类的对象类的完整名称,包括其命名空间,例如 Foo\Bar
来自匿名类的对象" class@anonymous"

来源:

Both functions are generally used for variable debugging and to get the type of a given variable.

The main difference is:

get_debug_type() differs from gettype() in that it returns type names that are more consistent with actual usage, rather than
those present for historical reasons.


gettype() returns one of the following possible string values:

  • "boolean"
  • "integer"
  • "double" (for historical reasons "double" is
    returned in case of a float, and not simply "float")
  • "string"
  • "array"
  • "object"
  • "resource"
  • "resource (closed)" as of PHP 7.2.0 "NULL"
  • "unknown type"

get_debug_type() returns one of the following possible string values:

Type + StateReturn Value
null"null"
Booleans (true or false)"bool"
Integers"int"
Floats"float"
Strings"string"
Array"array"
Resources"resource (resourcename)"
Resources (Closed)"resource (closed)"
Objects from Named ClassesThe full name of the class including its namespace e.g. Foo\Bar
Objects from Anonymous Classes"class@anonymous"

Sources:

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文