示例#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;
 }