ottosmops / ids
parse an ids-string to an array
v1.1.0
2020-06-30 08:42 UTC
Requires
- php: >=7.1
Requires (Dev)
- phpunit/phpunit: ^7.5
This package is auto-updated.
Last update: 2024-10-29 05:10:59 UTC
README
Idea
For PHP CLI or Api, if you want to have an option for one or more ids (integers), this very small package is a helper, which parses a string to an array of ids.
Usage
The usage is very simple:
$ids = '1-3'; $array = Ids::parse($ids); // [1,2,3]
License
The MIT License (MIT). Please see License File for more information.