drago-ex/utils

Extended ArrayHash with additional methods for converting data to arrays, including support for uppercase keys.

1.0.5 2023-12-01 10:53 UTC

This package is auto-updated.

Last update: 2025-03-24 11:14:37 UTC


README

This package includes several utility classes for working with arrays, case conversions, and handling database-related tasks.

License: MIT PHP version Tests Coding Style CodeFactor Coverage Status

Requirements

  • PHP 8.3 or higher
  • composer

Installation

composer require drago-ex/utils

Methods:

Converts the internal data of the ExtraArrayHash object into a simple PHP array.

$data->toArray();

Converts the internal data of the ExtraArrayHash object into a PHP array with all keys transformed to uppercase.

$data->toArrayUpper();

Converts a string from CamelCase to snake_case. This method is useful for converting variable or method names commonly used in programming languages.

CaseConverter::snakeCase(...)