コード例 #1
0
ファイル: Member.php プロジェクト: tanqinwang/test_own
 public function listAction()
 {
     $p = $_REQUEST;
     $tMO = new MemberModel();
     $tDatas = $tMO->field('id mid,name,idcard,phone')->where('uid = ' . $this->tUid)->fList();
     Tool_Fnc::ajaxMsg('', 1, $tDatas);
 }