<?php$sz = array('uid' => '2','user' => 'xiaoming');
$name = array();
foreach ($sz as $ceshi){
     $name = $ceshi['user']
}
echo $name['user'];
?>