user_model.php 265 B

1234567891011121314151617181920
  1. <?php
  2. class user_model extends Model
  3. {
  4. function __construct()
  5. {
  6. parent::Model();
  7. }
  8. function user_model()
  9. {
  10. $this->__construct();
  11. }
  12. //存储扩展信息
  13. function save_ext($array)
  14. {
  15. return $this->db->insert_array($array,"user_ext","replace");
  16. }
  17. }
  18. ?>