function demo3($str3)
{
$str3 = func_get_arg(0);
return $str3;
}
与
function demo3($str3)
{
return $str3;
}
秋香姐家的小书童2019-01-07 09:06:01
You need to use callbacks under special conditions. Don’t worry about this. Just know that there is such a callback method.