12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- namespace core\basic;
- use core\basic\Model;
- class Db
- {
-
- public function __call($methed, $args)
- {
- $model = new Model();
- $result = call_user_func_array(array(
- $model,
- $methed
- ), $args);
- return $result;
- }
-
- public static function __callstatic($methed, $args)
- {
- $model = new Model();
- $result = call_user_func_array(array(
- $model,
- $methed
- ), $args);
- return $result;
- }
- }
|