function some ($html, $name) {
return $html;
}
$outer_html = "<div>".$name."</div>";
echo some($outer_html, "Jon");
我知道我获得了Notice: Undefined variable: name in
但是如何设置函数参数,它本身包含其他参数?
我想要这样做因为,我需要在函数中生成$outer_html
并在设置好这个准备好的html代码后才能运行。