jstewmc/in-arrays
Composer 安装命令:
composer require jstewmc/in-arrays
包简介
Checks if a value exists in an array of arrays
README 文档
README
Checks if a value exists in an array of arrays.
use Jstewmc\InArrays\In; $arrays = [ 'foo' => ['foo', 'bar', 'baz'], 'bar' => ['foo', 'bar', 'baz'] ]; $service = new In($arrays); $service('foo', 'foo'); // returns true $service('bar', 'foo'); // returns true $service('bar', 'qux'); // returns false (value "qux" does not exist) $service('baz', 'foo'); // returns false (array "baz" does not exist)
Case-sensitivity
This library, like PHP, uses case-sensitive keys and values.
For example:
use Jstewmc\InArrays\In; // note the lower-case key and value $service = new In(['foo' => ['foo']); $service('foo', 'foo'); // returns true $service('FOO', 'foo'); // returns false (keys are case-sensitive) $service('bar', 'FOO'); // returns false (values are case-sensitive)
That's about it!
Author
License
Version
0.1.0, August 27, 2016
- Initial release
统计信息
- 总下载量: 17
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 5
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: Unknown
- 更新时间: 2016-09-01