liderman / php-text-generator
Fast SEO text generator on a mask
Installs: 6 367
Dependents: 0
Suggesters: 0
Security: 0
Stars: 26
Watchers: 2
Forks: 8
Open Issues: 0
Requires
- php: ^7.1
Requires (Dev)
- phpstan/phpstan: ^0.10.0@dev
- phpunit/phpunit: ^5.0.0
This package is not auto-updated.
Last update: 2025-03-29 22:27:57 UTC
README
Fast SEO text generator on a mask.
Written in PHP. I do not use regular expressions and the fastest. I covered tests and simple! Supporting recursive text generation rules. It supports multiple encodings.
This package implements the functionality of a similar package for Go Lang – text-generator.
Installation
composer require liderman/php-text-generator
Usage
An example of a simple template text generation:
$textGen = new TextGenerator(); echo $textGen->generate("Good {morning|day}!"); // Displays: Good morning! // or // Good day!
An example of a complex generation template text:
$textGen = new TextGenerator(); echo $textGen->generate("{Good {morning|evening|day}|Goodnight|Hello}, {friend|brother}! {How are you|What's new with you}?"); // Displays: Good morning, friend! How are you? // or // Good day, brother! What's new with you? // or // Hello, friend! How are you? // ...
Features
- It supports multiple encodings
- Supporting recursive text generation rules
- Fast! Does not use regular expressions
- Easy wrapping thanks to the integrated interface
- Covered tests
- Written by PSR standards and 100% covered with documentation (PHP-Doc)
- Without external dependencies
- The code is checked by the static analyzer PhpStan lvl 7
Requirements
- PHP >= 7.1