예제 #1
0
파일: crud.php 프로젝트: xinerd/SP_ROI
 public static function testFindById($id)
 {
     $user = UserDAOImpl::findById($id);
     //print_r($user);
     echo $user->uid . "\t" . $user->password . "\t" . $user->age;
 }