Php变量声明在type前有一个询问点[duplicate]

fdx2calv  于 2023-01-01  发布在  PHP
关注(0)|答案(1)|浏览(90)
    • 此问题在此处已有答案**:

What is the purpose of the question marks before type declaration in PHP7 (?string or ?int)?(4个答案)
Reference — What does this symbol mean in PHP?(24个答案)
1年前关闭。
在php中,下面两个变量声明有什么区别,无论是在过程模式下还是在类中:

  • 第一个月
  • ?string $str; // with ? before the type

谢谢你的灯

iibxawm4

iibxawm41#

变量$str只能为string类型:

string $str;

变量$str可以是stringnull类型:

?string $str;

相关问题