gpt4 book ai didi

php - 为什么在 PHP 中是 'Array()' 而不是 'new Array()'?

转载 作者:行者123 更新时间:2023-12-02 06:38:56 24 4
gpt4 key购买 nike

PHP 中的其他对象使用 new 限定符实例化,例如 new Date() 等。你怎么不提供 new 在 PHP 中实例化新数组时使用 Array() 限定?

$array = new Array(); //blows up
$array = Array(); //works as intended

$reflect = new ReflectionClass($this); //works as intended
$reflect = ReflectionClass($this); //blows up

最佳答案

Array 是一种语言构造而不是类,因此您不能使用 new 来实例化 Array 对象。

关于php - 为什么在 PHP 中是 'Array()' 而不是 'new Array()'?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11927902/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com