基本形式
正整数
1
字符串
‘user_name’
‘1,2,3,4,5,6’
带空格的字符串($half_sql)
‘WHERE `id`=“5”’
‘LIMIT 10’
数组 field 要与操作符有空格分隔
array(1, 2, 3, 4, 5, 6)
array(‘field1’=>’value1’,‘field2’=>’value2’)
array(‘field LIKE’=>’%value%’)
array(‘field >=’=> ‘value’)
array(‘field’=>array(1,2,3,4,5))
array(‘field1’=>’value1’,‘OR `name`’=>’ninghx’)
array(‘(field1’=>’value1’,‘OR field2’=>’value2’, ‘) AND field3’=>’value3’)
高级形式
操作符 AND OR ()
$filter = [ 'res_id' => time(), 'AND', 'res_type' => time(), 'OR', 'status' => 1, 'name' => 1];
$filter = [ '(', 'res_id' => time(), 'AND', 'res_type' => time(), ')', 'status' => 1, 'name' => 1 ];
$filter = [ [ [ 'res_type' => time(), 'OR', 'res_id' => time(), ], 'OR', 'res_type' => time(), ], 'OR', 'status' => 1];
- AnPHP简介
- 基本功能&设计
- 核心概念
- 执行流程
- 基础原理
- AnModel与AnDB的调用过程
- 云数据库的强制读取主库
- 快速入门
- AnModel使用
- 基本特性
- 基本的数据读写
- 参数$filter
- 参数$half_sql
- 参数$field
- 属性
- 连贯操作
- create()
- delete()
- update()
- getFields()
- 设置工具
- 自动建表
- 分库分表
- 调试工具
- table系统model
- countable系统model
- 高级使用
- 观察者
- 勾子
- 关联资源
- 强大的配置参数
- AnRequest
- AnResponse
- AnConfig
- AnCookie
- AnSession
- AnDB
- AnMemcacheWrapper
- AnRedis
- 类
- AnPHP
- 函数
- common.php
- 目录结构
- Cache
- DB
- Model
- MongoDB
- Redis
- Sms
- test
- TR
- api
- sql
- 快速使用