<html>
<head>
<title>text</title>
</head><body>
<?php
  function fun()
  {
 $Num=func_num_args();
 $List=func_get_args();
 $Result;
 for($i=$Num-1;$i>=0;$i--)
  $Result.=$List[$i];
  return $Result;
}
$Var1=fun(1,2,3,4);
$Var2=fun("t","n","e","d","u","t","s");
echo "$Var1<br/>";
echo "$Var2<br/>";
?>
----------------------------------------------------------------------------
页面显示》
Notice: Undefined variable: Result in D:\wamp\www\index.php  on line 14Notice: Undefined variable: Result in D:\wamp\www\index.php on line 14
4321
student
----------------------------------------------------------------------------为什么会多出2个Notice,问题出在哪里