心理咨询网
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

12345678910111213141516171819202122232425262728293031323334353637
  1. <?php
  2. /**
  3. * @copyright (C)2016-2099 Hnaoyun Inc.
  4. * @author XingMeng
  5. * @email hnxsh@foxmail.com
  6. * @date 2017年11月1日
  7. * 数据库快速操作类
  8. */
  9. namespace core\basic;
  10. use core\basic\Model;
  11. class Db
  12. {
  13. // 对象方式动态调用数据库操作方法
  14. public function __call($methed, $args)
  15. {
  16. $model = new Model();
  17. $result = call_user_func_array(array(
  18. $model,
  19. $methed
  20. ), $args);
  21. return $result;
  22. }
  23. // 静态方式动态调用数据库操作方法
  24. public static function __callstatic($methed, $args)
  25. {
  26. $model = new Model();
  27. $result = call_user_func_array(array(
  28. $model,
  29. $methed
  30. ), $args);
  31. return $result;
  32. }
  33. }