<?php
$arr=array('1'=>array('1'=>'<div class="style">sss</div>','2'=>2,'3'=>3));
echo $arr[1][1];
?>
这段代码只输出的了 sss
怎么才能让他连同html 全部输出呢?