我正在制作一个脚本,该脚本在安装程序中使用数组显示错误,因此,每当发生错误时,PHP数组都会处理错误名称
赞:
function show_error() {
$args = func_get_args();
$message = //here foreach all the errors as a message the display it
echo '<!DOCTYPE html>
<html>
<body>
<div class="error-message">'.$message.'</div>
</body>
</html>';
exit;
}
然后最困难的部分是当我尝试使用函数而不是Foreach循环打印此
那么我如何才能将所有这些数组值作为函数的参数然后打印出来?
我认为这是一个开始
div