Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果我从 getter 返回并且没有为它设置任何内容,返回什么变量类型?
喜欢
$nb = $prod->getNewDate();
假设没有为新日期设置任何内容。什么是 $nb?无效的?
只需var_dump()在变量上使用它就会告诉你它是什么,在这种情况下为 NULL。
var_dump()
然后返回 NULL,就像普通函数一样。