承接 datashaman/array-filter 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

datashaman/array-filter

Composer 安装命令:

composer require datashaman/array-filter

包简介

Match an array against a filter

README 文档

README

A literal port of the excellent Javascript library mmckegg / json-filter to PHP.

Credit to Matt McKegg for creating an incredibly useful, well-tested piece of software.

Match PHP arrays against filters.

Build Status

Installation

$ composer require datashaman/array-filter

Filters

Filters are just arrays that have the keys and values you want your final array to have. e.g. if you wanted to require that the field type was always person your filter would be {type: 'person'}.

If things aren't so black and white, the following conditionals are available:

$present

Specify that the value must not be null or false (i.e. 'truthy').

array(
  'name' => array( '$present' => true )
)

$any

Specify that the value can be anything. Useful when matching all keys.

array(
  'description' => array( '$any' => true )
)

$contains

For matching against an array. The array must contain all of the values specified.

array(
  'tags' => array( '$contains' => array( 'cat', 'animal' ) )
)

$excludes

For matching against an array. The array cannot contain any of the values specified.

array(
  'permissions' => array( '$excludes' => array( 'admin', 'mod' ) )
)

$only

The value can only be one of the ones specified.

array(
  'gender' => array( '$only' => array( 'male', 'female', 'unknown' ) )
)

$not

The value can be anything except one of the ones specified.

array(
  'browser' => array( '$not' => array( 'IE', 'Firefox' ) )
)

$matchAny

Allows a filter to branch into multiple filters when at least one must match.

array(
  '$matchAny' => array(
    array( 'type' => "Post",
      'state' => array( '$only' => array( 'draft', 'published' ) )
    ),
    array( 'type' => "Comment",
      'state' => array( '$only' => array( 'pending', 'approved', 'spam' ) )
    )
  )
)

$query

Specify a query to get the value to match. Uses options.queryHandler.

array(
  'type' => 'item',
  'user_id' => array( '$query' => 'user.id' )
)

$optional

A shortcut for specifying a lot of $any filters at the same time.

array(
  '$optional' => array( 'description', 'color', 'age' )
)

Is equivalent to:

array(
  'description' => array( '$any' => true ),
  'color' => array( '$any' => true ),
  'age' => array( '$any' => true )
)

API

use DataShaman\ArrayFilter;

$filter = new ArrayFilter;
$filter->checkFilter($source, $filter, $options);

checkFilter(source, filter, options)

options:

  • match: specify: 'filter', 'source', 'any', 'all'
    • filter: every filter permission must be satisfied (i.e. required fields)
    • source: every source key must be specified in filter
    • any: the keys don't matter, but if there is a match, they must pass
    • all: all keys must be exactly the same, otherwise fails - for finding changed items - no $conditionals work in this mode
  • queryHandler: Accepts a function(query, localContext) that returns resulting value
  • context: Array to pass to the query handler

统计信息

  • 总下载量: 26
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 2
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 2
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2014-07-11

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固