An open API service indexing awesome lists of open source software.

https://github.com/nhalstead/incrementor

Generate String in bulk using a formula.
https://github.com/nhalstead/incrementor

Last synced: about 2 months ago
JSON representation

Generate String in bulk using a formula.

Awesome Lists containing this project

README

          

# Incrementor

Generate String from a template in bulk. This can be used to generate

## How to use

Basic & Fast Usage of the library:

```php

// array(10) {
// [0]=>
// string(9) "TEST_0000"
// [1]=>
// string(9) "TEST_0001"
// [2]=>
// string(9) "TEST_0002"
// [3]=>
// string(9) "TEST_0003"
// [4]=>
// string(9) "TEST_0004"
// [5]=>
// string(9) "TEST_0005"
// [6]=>
// string(9) "TEST_0006"
// [7]=>
// string(9) "TEST_0007"
// [8]=>
// string(9) "TEST_0008"
// [9]=>
// string(9) "TEST_0009"
// }
// }

?>
```