PHP 所有内置对象的参考?
我搜索了 Stackoverflow 和 Google,似乎找不到列出所有 PHP 内置对象(例如 DateTime)的参考(详尽的或其他的)。有没有人有这种性质的链接,我将不胜感激,谢谢。
I have searched Stackoverflow and Google and can't seem to find a reference (exhaustive or otherwise) that lists all of PHP's built-in objects such as DateTime. Does anyone have any links to something of this nature, I would appreciate it, thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用
get_declared_classes()
。根据您拥有的扩展数量,可能的输出可能是:You can use
get_declared_classes()
. Depending on how many extensions you have, a possible output could be:http://www.php.net/manual/en/extensions.alphabetical.php ?
http://www.php.net/manual/en/extensions.alphabetical.php ?