angus-dv/in_array_r
Composer 安装命令:
composer require angus-dv/in_array_r
包简介
Provides functionality for in_array_r() to projects using PHP earlier than version 5.5 or greater.
关键字:
README 文档
README
The in_array_r() function is not a built-in PHP function, but rather a custom function that can be used to recursively check if a given $needle (string or integer) exists within a multi-dimensional $haystack array.
Usage
array in_array_r(string|int $needle, array $haystack,bool $strict = false)
The function takes three parameters:
$needle: The value (string or integer) to search for.$haystack: The array (or multi-dimensional array) to search in.$strict: (Optional) A boolean value that determines whether the search should be strict (using the===operator) or not (using the==operator).
The function first checks if the $haystack is an array. If it is, it loops through each item in the array. For each item, it checks if the item matches the $needle (using either the strict or non-strict comparison, based on the $strict parameter). If a match is found, the function returns true.
If the item is another array, the function recursively calls itself with the current item as the new $haystack. This allows the function to search through nested arrays until a match is found or the entire $haystack has been searched.
If no match is found after searching the entire $haystack, the function returns false.
So, to answer your question, the in_array_r() function can be used to check if a given value (string or integer) exists within a multi-dimensional array. It will search through all the nested arrays and return true if the $needle is found, and false otherwise.
Installation
The easiest way to install this library is to use Composer:
composer require angus-dv/in_array_r
Then, when you run composer install, everything will fall magically into place,
and the in_array_r() function will be available to your project, as long as
you are including Composer's autoloader.
However, you do not need Composer to use this library.
This library has no dependencies and should work on older versions of PHP.
Download the code and include src/in_array_r.php in your project, and all
should work fine.
When you are ready to run your project on PHP 5.5 or greater than, everything should continue to run well without conflicts, even if this library remains included in your project.
angus-dv/in_array_r 适用场景与选型建议
angus-dv/in_array_r 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 8 次下载、GitHub Stars 达 0, 最近一次更新时间为 2024 年 08 月 19 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「array」 「column」 「in_array_r」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 angus-dv/in_array_r 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 angus-dv/in_array_r 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 angus-dv/in_array_r 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
A set of useful PHP classes.
Display multiple images as a stack in your Filament tables
Trait providing methods to set class properties with an array.
Traits to build collections of specific objects
This adds functions about array. If you feel like there few php built-in functions about array, this will be useful.
Convert array or camel case to underscore, or underscore to others.
统计信息
- 总下载量: 8
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 11
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2024-08-19