hoangphi/hwa-helpers
Composer 安装命令:
composer require hoangphi/hwa-helpers
包简介
A package about custom helpers. Create by Phi Hoang.
关键字:
README 文档
README
About
hwa-helpers is a helper package. It helps us to build and develop faster with pre-built functions. This saves a lot of time on future projects.
We share this package to give programmers an extra useful library. We hope people use this package not for commercialization or profit of any kind.
And finally, hope to receive more contributions and shares from all of you.
Thank you very much 🧡
Install
- You can install the package via composer:
composer require hoangphi/hwa-helpers
- Optional: The service provider will automatically get registered. Or you may manually add the service provider in your
config/app.phpfile:
'providers' => array( // ... HoangPhi\HwaHelpers\Providers\HwaHelperServiceProvider::class, );
- Optional: You can publish the
config/hwa_helpers.phpconfig file with:
php artisan vendor:publish --provider="HoangPhi\HwaHelpers\Providers\HwaHelperServiceProvider" --tag=hwa_helpers
- Optional: You can customize the
config/hwa_helpers.phpconfig file . If you customize fileconfig/hwa_helpers.php. You need to run the command below to clear cache and update the changes.
php artisan config:cache
# or
php artisan optimize:clear
Default config file contents
You can view the default config file contents at:
https://github.com/hoangphidev/hwa-helpers/blob/master/config/hwa_helpers.php
Usage
Since this is a package with helper functions, after installing the package into the project, people can call the helper functions everywhere in the project.
Here are some helper functions we've built:
- Commons
app_name(); // Get website name, project name - Ex: Laravel activate_status(); // Get status activate - Ex: 1 - activate deactivate_status(); // Get status deactivate - Ex: 2 - deactivate gender_male(); // Get gender male - Ex: 1 - male gender_female(); // Get gender female - Ex: 1 - female page_limit(); // Get page limit default in pagination - Ex: 12
- Datetime
current_day(); // Get current day - Ex: 01 current_month(); // Get current month - Ex: 07 current_year(); // Get current year - Ex: 2021 current_date(); // Get current - Ex: 2021-07-01 00:00:01 current_date('H:i:s d/m/Y'); // Get current date with format - Ex: 00:00:01 01/07/2021 custom_date('2021-07-01 00:00:01', 'H:i:s d/m/Y'); // Get customer date with format - Ex: 00:00:01 01/07/2021 custom_date('2021-07-01 00:00:01', 'H:i:s d/m/Y', 'en_EN'); // Get customer date with format and locale for diffForHumans - Ex: 00:00:01 01/07/2021 or 1 seconds or 1 minutes.
- Images
storage_folder_path('users'); // Check and create folder if not existed in storage. storage_image_path('users', '1.jpg') // Check and get image from image storage path. storage_image_url('users', '1.jpg') // Get public asset url image from storage.
- Ip info
get_user_agent(); // Get user agent get_current_ip(); // Get current client ip get_ip_info('127.0.0.1'); // Get info ip from http://api.ipstack.com get_client_ip(); // Get client ip from https://ipinfo.io code_to_country('EN'); // Convert country code to country name. Ex: EN to English get_os(); // get OS client using get_client_browser(); // get client browser using get_device(); // get client device using
- Response API
send_ok_response('Message.', ['name' => 'Phi Hoang', 'phone' => '0989324221']); // Response normal with param 1 is message, param 2 is object or array data. send_ok_response('Message.', '<paginate_items_object>', true); // Response with param 1 is message, param 2 is data paginate include results with meta, param 3 is boolean true to paginate. send_created_response('Message.', 1); // Response with code 201 - param 1 is message, param 2 is id. send_error_response('Message', 400); // Response error with code 400 is default. Message compare with code [401, 404, 403, 500].
Changelog
Please see CHANGELOG for more information what has changed recently.
Security
If you discover a security vulnerability within hwa-helpers, please send an e-mail to Phi Hoang via hoangphidev@gmail.com. All security vulnerabilities will be promptly addressed.
Credits
License
The Laravel framework is open-sourced software licensed under the MIT license.
hoangphi/hwa-helpers 适用场景与选型建议
hoangphi/hwa-helpers 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 6 次下载、GitHub Stars 达 1, 最近一次更新时间为 2021 年 07 月 01 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「package」 「helpers」 「helper」 「laravel」 「laravel-helpers」 「laravel-package」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 hoangphi/hwa-helpers 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 hoangphi/hwa-helpers 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 hoangphi/hwa-helpers 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Datetime helpers for timezone handling
Library with classes to help you do batch.
This adds functions about array. If you feel like there few php built-in functions about array, this will be useful.
HTML and form generation
Falsy helps you manage half-truths with PHP
统计信息
- 总下载量: 6
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 13
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2021-07-01