PHP date_add 是 DateTime::add 的别名,但是谁在内部调用了谁呢?
与date_add
一样,许多函数date_diff
、date_format
等在DateTime
类中都有相应的别名。
您知道 DateTime::add
内部是否调用 date_add
或反之亦然吗?
只是为了确保:DateTime
类是在 PHP 中内部编译的,不是吗?我的意思是,当我调用 DateTime
类时,我是否调用了不需要首先由 PHP 解析的代码,就像我的 .php 文件之一?
Like date_add
there are many functions date_diff
, date_format
etc having a corresponding alias in DateTime
class.
Do you know if internally DateTime::add
calls date_add
or vice versa?
And just to make sure: is DateTime
class compiled internally in PHP, isn't' it? I mean when I call DateTime
class, am I calling code that does not need to be parsed 1st by PHP like one of my .php file?!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
DateTime 扩展是用 C 编写的。后果是:
The DateTime extension is written in C. Consequences are: