💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
>[warning] 使用前必须引入**UserTrait**片段 use db\traits\sys\UserTrait; #### getByUserId()-按用户编号获取用户信息(匹配admin表的id字段) >[info] getByUserId($userId,$fields='*'){} ### 参数 * userId:用户的数字编号 * fields:需要返回的字段集合 >[success]返回值 array/false ### error ```php return false; ``` ### success ```php array( 'userid' => '1', 'username' => 'admin', 'nickname' =>'管理员', 'avatar' =>'', ..... ) ``` >[success]示例代码 ```php use UserTrait; //读取用户信息 $sysUserInfo =$this->getByUserId(1); ```