detechn logo

惪特博客

  • 文章

    1.7W+
  • 评论

    3.8W+
  • 浏览

    926W+
  • 标签

    7.3K+
thinkphp5.1修改添加配置项

thinkphp5.1修改添加配置项

```php /** * 修改扩展配置文件. * * @param array $arr 需要更新或添加的配置 * @param string $file 配置文件名(不需...

1393
ThinkPHP5.1 where多条件查询

ThinkPHP5.1 where多条件查询

```php if ($keyword) { if ($sotype == "id") { $where[$stype] = $ke...

2502
thinkphp5.1保存搜索条件

thinkphp5.1保存搜索条件

```php $map[] = ['sell_id','=',API_UID]; $map[] = ['status','=',1]; $find='id,cid,goods_title,...

1388
thinkphp5.1 设置任何全局过滤规则(去掉input两端空格)

thinkphp5.1 设置任何全局过滤规则(去掉input两端空格)

```php 'default_filter' => 'trim,strip_tags,htmlspecialchars', ```

3133
thinkphp5.1获取器【默认为空时的值】

thinkphp5.1获取器【默认为空时的值】

```php public function getTypeAttr($value) { $status = ['phone'=>'手机号','wx'=>'...

1478