function test(){}
function test(){
return;
}
function test(){
return null;
}
以上三种情况,$result=test();
的值都为null
。
function test(){}
function test(){
return;
}
function test(){
return null;
}
以上三种情况,$result=test();
的值都为null
。
本文标题:[PHP] php 函数没有明确返回值时,返回null
本文链接:https://www.haomeiwen.com/subject/ewpnkttx.html
网友评论