如何以可读的方式打印地图,结构或其他内容?
使用PHP,你可以这样做
echo '<pre>'; print_r($var); echo '</pre>';
要么
header('content-type: text/plain'); print_r($var);
go
go ×1