1234567891011121314151617181920212223 |
- <?php
- namespace Option\Lib;
- use Dever;
- class Member
- {
- public function getInfo($id)
- {
- if ($id < 0) {
- return '无';
- }
- $account = Dever::db('option/member')->find($id);
- if ($account) {
- $string = $account['name'] . '<br />' . $account['mobile'] . '<br />' . $account['idcard'] . '<br />' . $account['key'];
- return $string;
-
- } else {
- return '';
- }
- }
- }
|