cnp/php-utilities
Composer 安装命令:
composer require cnp/php-utilities
包简介
Generic PHP functions for standardized data manipulation.
README 文档
README
Generic PHP functions for data manipulation.
Functions
getAcfFieldsAsArray
Gets a bunch of specific ACF fields at once. Especially useful for option page settings, which only have a way to get one field at a time.
Parameters
$fields_names_arr (array|required): An array of the field names.
$option (boolean|optional): Set to true if the fields are from an options page.
Return Values
$data_arr (array): Data array keyed to the field names from the input array.
multidimensionalArrayMap
Like array_map, but for multidimensional arrays.
Parameters
$function The callback function to apply to each value of the array
$array The multi-dimensional array
Return Values
(array) The formatted array.
parseClassesAsArray
Take a string or array of classes, trim them and then return classes as an array.
Parameters
$classes (required): An flat array or comma-delimited string of classes.
Return Values
(boolean or array) If the formatted array is empty, returns false. Otherwise, returns array of classes.
printOnPresent
Like the proverbial weasel, this function pops out markup if data is present. It's a more efficient way of doing an if ( '' !== $data ) or if ( !empty( $data ) ) check: 3 lines for the price of one!
If you pass in a function name, the function will be executed. You can use anonymous functions too!
Usage
<?php CNP\Utility::printOnPresent( $string, '<h1 class="title">'. $string .'</h1>' ); ?>
Parameters
$string_or_array (required): The variable to check for data, which can be a string or an array. Objects are not supported.
$markup_or_function (required): What to do with the data if it is present. You can supply a string of markup, or call a function for more complex scenarios.
Return Values
(boolean or string) If the data check fails, printOnPresent returns false. If the data check is successful, then printOnPresent echoes the markup or function output from the $markup_or_function variable.
cnp/php-utilities 适用场景与选型建议
cnp/php-utilities 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 86 次下载、GitHub Stars 达 0, 最近一次更新时间为 2016 年 05 月 02 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 cnp/php-utilities 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 cnp/php-utilities 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 86
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 9
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2016-05-02