PHP code example of houdunwang / repository

1. Go to this page and download the library: Download houdunwang/repository library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

houdunwang / repository example snippets


//查找单条
public function find($id);

//获取所有
public function all();

//分页数据
public function paginate($page = 15);

//新增模型
public function create($data);

//更改模型
public function update($model, $data);

//删除模型
public function destroy($model);

//根据属性条件查询
public function findByAttributes(array $attributes);

//多个主键数据
public function findByMany(array $ids);

//根据属性条件获取多条
public function getByAttributes(array $attributes, $orderBy = null, $sortOrder = 'asc');

//清除缓存(缓存仓库有效)
public function clearCache();