Download the PHP package putuariepra/devbadung-helpers without Composer
On this page you can find all versions of the php package putuariepra/devbadung-helpers. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download putuariepra/devbadung-helpers
More information about putuariepra/devbadung-helpers
Files in putuariepra/devbadung-helpers
Download putuariepra/devbadung-helpers
More information about putuariepra/devbadung-helpers
Files in putuariepra/devbadung-helpers
Vendor putuariepra
Package devbadung-helpers
Short Description Service provider for helpers for Developer Diskominfo Kab. Badung
License
Package devbadung-helpers
Short Description Service provider for helpers for Developer Diskominfo Kab. Badung
License
Please rate this library. Is it a good library?
Informations about the package devbadung-helpers
Helpers Register
Developer Diskominfo Kab. Badung
Usage
- All helper's files inside directory app/Helpers/Methods will be registered automatically
- Add PHP files that contain helper's functions to directory app/Helpers/Methods
Example: app/Helpers/Methods/formatter.php
<?php
if (!function_exists('array_delete')) {
/**
* Delete from array by value.
*
* @param array $array
* @param mixed $value
*/
function array_delete(&$array, $value)
{
foreach ($array as $index => $item) {
if ($value == $item) {
unset($array[$index]);
}
}
}
Installation
Run composer require to install
composer require putuariepra/devbadung-helpersAll versions of devbadung-helpers with dependencies
PHP Build Version
Package Version
The package putuariepra/devbadung-helpers contains the following files
Loading the files please wait ...