Download the PHP package denisok94/helper without Composer

On this page you can find all versions of the php package denisok94/helper. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package helper

Helper Class

Класс с набором полезных функций, по мнению автора. Не претендует на идеальность и единственное верное решение.

A class with a set of useful functions, according to the author. It does not pretend to be ideal and the only correct solution.

https://img.shields.io/badge/license-BSD-green


  1. Установка
  2. Использование
    1. ArrayHelper
    2. DataHelper
    3. StringHelper
    4. FileHelper
    5. HtmlHelper
    6. OtherHelper
  3. Other Class
    1. MicroTimer
    2. Console
  4. Framework Integration
    1. Yii2
    2. Symfony

Установка

Run:

or add to the require section of your composer.json file:

Использование


ArrayHelper

Работа с массивами

Method Description
get Найти в массиве по пути
set Добавить/заменить элемент в массиве
parse Заменить шаблон
implodeWrap Объединяет элементы массива в строку + обернуть текст в кавычки
implodeWith Объединяет элементы массива в строку, с предпользовательской обработкой
implodeByKey Объединяет элементы массива в строку по ключу
implodeByKeyWrap Объединяет элементы массива в строку по ключу + обернуть текст в кавычки
implodeMulti Объединяет элементы многомерного массива в строку
isJson проверяет данные на json
toJson Преобразовать массив/объект в json
toArray Преобразовать json в массив
arrayToObject Преобразовать массив в объект
array2Object Преобразовать массив в объект, вариант 2
objectToArray Преобразовать объект в массив
object2Array Преобразовать объект в массив, вариант 2
arrayOrderBy Сортировка массива

arrayToObject и objectToArray - работают быстрее, но могут возникнуть исключения. array2Object и object2Array - использую преобразование через json_decode + json_encode, это более ресурсозатратные, но надёжнее.


DataHelper

Method Description
currentDate Текущая дата
currentDt Текущая дата и время
toMysqlDate Преобразовать дату в формат Mysql
toMysqlDt Преобразовать дату и время в формат Mysql
toRuDate Русский формат даты
toRuDt Русский формат даты и времени
stampToDt Преобразовать timestamp в формат даты и времени
stampToDtU Преобразовать timestamp в формат даты и времени с миллисекундами
yesterdayDate Получить вчерашнюю дату
createDate
modifyDate
getStamp

StringHelper

Method Description
uuid Сгенерировать uuid v4
guid Сгенерировать guid v4
random Сгенерировать рандомную строку
spell падежи к числительным
slug преобразовать строку в человекопонятный url
ru2Lat Транслитирование, ГОСТ 7.79-2000, схема А
ruToLat Транслитирование, ГОСТ 7.79-2000, схема Б
ru2Slug преобразовать строку, на русском (схема А), в человекопонятный url
getClassName Получить имя класса
slashes экранирование
replaceBBCode Парсинг BB-кодов

replaceBBCode

Поддержка:

FileHelper

Работа с файлами

Method Description
ext Получить расширение файла
fileRead Показать содержимое файла
fileGetDt Получить дату последнего изменения
fileType Получить тип файла
fileIcon Получить название иконки для файла
fileIconFa Получить название иконки для файла в формате Font Awesome 4/5
fileShortSize короткий размер файла
shortSize 2048 → 2.00 KB
parseSize 2.00 KB → 2048
dirSize Получить размер папки

HtmlHelper

Генерация html тегов

в разработке...

Method Description
video видео тег

OtherHelper

Method Description
curl curl для большинства простых запросов
getRequest параметры запроса
getUserIp получить IP пользователя
isBot Проверка пользователя на бота
msleep уснуть на N секунд

isBot() не даёт 100% гарантии. Кому разрешить/запретить доступ/функционал - решать исключительно Вам. Запрещая всё и всем, Вы можете лишится продвижения сайта в поисковых ресурсах и/или красивых привью в соц сетях =).


Other Class

MicroTimer

Узнать, сколько времени выполняется код

взято у phpLiteAdmin


Console

Method Parameters Return Description
__construct ?array, ?mixed throws set required parameters and/or default value
get string, ?default value/default get argument or option
getArgument string, ?default value/default get argument
getArguments - array get arguments
getOption string, ?default value/default get option
getOptions - array get options
hasArgument string true/false
hasOption string true/false
show string string

Required parameters

Default value


Framework Integration

Yii2

Deletes in version 0.8.0 (12.06.2022)

A new separate repository has been created:

Symfony

Symfony Helper


All versions of helper with dependencies

PHP Build Version
Package Version
Requires denisok94/helper-composer Version *
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package denisok94/helper contains the following files

Loading the files please wait ....