换句话说,说我有
$existingVariable = 'This is set';
echo thisFunction($existingVariable, $nonExistingVariable);
//included file
function thisFunction($existingVariable){
echo $existingVariable;
}
$nonExistingVariable 不再存在,因为包含的文件已更改。
所以我理解它的方式$nonExistingVariable
是 =''
或NULL
,对吧?这对我的代码有任何实际影响吗?我会在发布之前将它们删除(或将它们添加回包含的文件),但我只是好奇是否将不存在的变量作为参数存在功能问题的风险。