将 php 函数(例如 trim())应用于传递给函数的所有参数同时保持它们有说服力以供进一步处理的好方法是什么?假设我们想要修剪传递给邮件函数的所有参数:
function my_function($a, $b, $c = NULL, $d, $e = NULL, $f = NULL){
$a = trim($a);
$b = trim($b);
$c = trim($c);
$d = trim($d);
$e = trim($e);
$f = trim($f);
// !!! i'd like something other than n lines of trim()...
// do further functioning on original *now trimmed* arguments...
my_function($to,$subject,$body,$from,$cc,$bcc);
func_get_args() 和其他数组类型函数并不理想,因为我们修剪的参数无法用于最初定义的进一步操作。我们是否需要使用某种数组然后重新组合原始参数?