🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
# 读取单条数据 - 格式1 > table : 表名 > other : 配置参数数组(下面说明) ~~~ $other = []; $other['where'] = ['字段名="'.搜索变量值.'"']; $row = $Sql->row($table,$other); ~~~ ***** # 读取单条数据 - 格式2 > table : 表名 > other : 配置参数数组(下面说明) ~~~ $other = []; $other['field'] = ['搜索字段名1','搜索字段名2']; $other['where'] = ['字段名="'.搜索变量值.'"']; $row = $Sql->row($table,$other); ~~~ ***** # 读取单条数据 - 格式3 > table : 表名 > other : 配置参数数组(下面说明) ~~~ $other = []; $field = []; $field[] = '搜索字段名1'; $field[] = '搜索字段名2'; $other['field'] = $field; $other['where'] = ['字段名="'.搜索变量值.'"']; $row = $Sql->row($table,$other); ~~~ ***** # 读取单条数据 - 格式4 > table : 表名 > other : 配置参数数组(下面说明) ~~~ $other = []; $other['field'] = ['搜索字段名1','搜索字段名2']; $where = []; $where[] = '字段名="'.搜索变量值.'"'; $other['where'] = $where; $row = $Sql->row($table,$other); ~~~ ***** # 读取单条数据 - 格式5 > table : 表名 > other : 配置参数数组(下面说明) ~~~ $other = []; $field = []; $field[] = '搜索字段名1'; $field[] = '搜索字段名2'; $other['field'] = $field; $where = []; $where[] = '字段名="'.搜索变量值.'"'; $other['where'] = $where; $row = $Sql->row($table,$other); ~~~ ***** # 读取单条数据 - other配置参数 > field: 只显示字段名数组( 不填则全部显示 ) > where: 判断语句数组( 以and形式合并 ) > echo : 输出语句( 1是 0否 ) *****