PHP中的字符串型大小写,是字符串还是字符串?

时间:2019-03-13 20:37:19

标签: php php-7 type-hinting

php字符串类型的正式名称是什么?

是像c#这样的“字符串”,还是像Java这样的“字符串”,还是其中之一?

我在http://php.net/manual/en/language.types.string.php中找不到它

我想用它来严格键入我的函数

function getImageName() : string;

function getImageName() : String;

1 个答案:

答案 0 :(得分:3)

由于PHP是partially case sensitive language,尤其是关键字不区分大小写,因此内置类型名称的大小写无关紧要。 stringString都将用作类型声明(也称为“类型提示”)。

官方文档中提到了小写字母变体,因此可能使用小写字母关键字作为代码样式是一个好主意-就像大多数PHP代码样式使用foreach而不是{{1} }。

P.S。您可以在PHP Function arguments page, 'Type declarations' section上找到文档。