改进Query类的find和select方法的默认值

This commit is contained in:
thinkphp
2016-06-21 10:58:19 +08:00
parent c4669f142d
commit 850376dfe7
3 changed files with 27 additions and 27 deletions

View File

@@ -881,7 +881,7 @@ abstract class Model implements \JsonSerializable, \ArrayAccess
* @return static
* @throws exception\DbException
*/
public static function get($data = '', $with = [], $cache = false)
public static function get($data = null, $with = [], $cache = false)
{
$query = self::parseQuery($data, $with, $cache);
return $query->find($data);
@@ -896,7 +896,7 @@ abstract class Model implements \JsonSerializable, \ArrayAccess
* @return static[]|false
* @throws exception\DbException
*/
public static function all($data = [], $with = [], $cache = false)
public static function all($data = null, $with = [], $cache = false)
{
$query = self::parseQuery($data, $with, $cache);
return $query->select($data);
@@ -915,13 +915,13 @@ abstract class Model implements \JsonSerializable, \ArrayAccess
$result = self::with($with)->cache($cache);
if (is_array($data) && key($data) !== 0) {
$result = $result->where($data);
$data = [];
$data = null;
} elseif ($data instanceof \Closure) {
call_user_func_array($data, [ & $result]);
$data = [];
$data = null;
} elseif ($data instanceof Query) {
$result = $data->with($with)->cache($cache);
$data = [];
$data = null;
}
return $result;
}
@@ -938,10 +938,10 @@ abstract class Model implements \JsonSerializable, \ArrayAccess
$query = $model->db();
if (is_array($data) && key($data) !== 0) {
$query->where($data);
$data = [];
$data = null;
} elseif ($data instanceof \Closure) {
call_user_func_array($data, [ & $query]);
$data = [];
$data = null;
}
$resultSet = $query->select($data);
$count = 0;

View File

@@ -1703,13 +1703,13 @@ class Query
* @throws Exception
* @throws PDOException
*/
public function select($data = [])
public function select($data = null)
{
if ($data instanceof Query) {
return $data->select();
} elseif ($data instanceof \Closure) {
call_user_func_array($data, [ & $this]);
$data = [];
$data = null;
}
// 分析查询表达式
$options = $this->parseExpress();
@@ -1717,7 +1717,7 @@ class Query
if (false === $data) {
// 用于子查询 不查询只返回SQL
$options['fetch_sql'] = true;
} elseif (!empty($data)) {
} elseif (!is_null($data)) {
// 主键条件分析
$this->parsePkWhere($data, $options);
}
@@ -1790,18 +1790,18 @@ class Query
* @throws Exception
* @throws PDOException
*/
public function find($data = [])
public function find($data = null)
{
if ($data instanceof Query) {
return $data->find();
} elseif ($data instanceof \Closure) {
call_user_func_array($data, [ & $this]);
$data = [];
$data = null;
}
// 分析查询表达式
$options = $this->parseExpress();
if (!empty($data) || 0 === $data) {
if (!is_null($data)) {
// AR模式分析主键条件
$this->parsePkWhere($data, $options);
}

View File

@@ -44,7 +44,7 @@ class Merge extends Model
* @param bool $cache 是否缓存
* @return \think\Model
*/
public static function get($data = '', $with = [], $cache = false)
public static function get($data = null, $with = [], $cache = false)
{
$query = self::parseQuery($data, $with, $cache);
$query = self::attachQuery($query);
@@ -106,7 +106,7 @@ class Merge extends Model
* @param string $with 关联预查询
* @return array|false|string
*/
public static function all($data = [], $with = [], $cache = false)
public static function all($data = null, $with = [], $cache = false)
{
$query = self::parseQuery($data, $with, $cache);
$query = self::attachQuery($query);