php 数组和数组的区别是什么?[duplicate]

jyztefdp  于 2023-02-28  发布在  PHP
关注(0)|答案(3)|浏览(95)
    • 此问题在此处已有答案**:

String type casing in php, is it string or String?(1个答案)
昨天关门了。
社区正在审查是否从昨天开始重新讨论这个问题。
this OOP教程中,我注意到以下代码:

public function validate(Array $data, Array $rules){}

我的问题是,这是否等同于:

public function validate(array $data, array $rules){}

在www.example.com文档中,我只能找到对第二种形式的引用。PHP.net documentation, I could find a reference only to the second form.

t2a7ltrp

t2a7ltrp1#

它们都是相同的,不过有些IDE只识别其中一种形式(就像stackoverflow本身一样,它只对Array进行样式化

q35jwt9p

q35jwt9p2#

缩写:PHP函数、用户定义函数和变量名不区分大小写,类常量除外。

q8l4jmvw

q8l4jmvw3#

Javascript只能使用“数组”。在PHP中使用“数组”没有问题,但如果你也想使用Javascript,它会导致错误。

相关问题