以下方法均可在页面输出变量值
{{$value}} // 输出普通字符串变量 {{dump($arr)}} // 输出数组变量类似于print_r格式化之后的样子,做开发测试时使用 <php> echo $value; </php>