例子:
function create_pets(&$cats, &$dogs){
$dogs = get_dogs();
$cats = get_cats();
}
所以我会这样称呼它:
function foo(){
create_pets($cats, $dogs);
// here use $cats and $dogs variables normally
}
我知道我可以为这些 getter 函数之一的返回值分配一个新变量,但这只是一个示例。在我的情况下,不仅仅是一个吸气剂......