TextGenerator icon indicating copy to clipboard operation
TextGenerator copied to clipboard

TextGenerator is a PHP package that aims to generate automated texts from data.

Results 7 TextGenerator issues
Sort by recently updated
recently updated
newest added

This adds a "reproducable random" function. Would be great to have a similar function for `shuffle`.

I needed a function that allowed me to do a random choice, but keep the choice linked to a seed value so that the text would stay constant over subsequent...

It is not possible to set interdependend variable. This will set @word always to "Vespa" and @dempron always to "Die" ``` #random{ #set{@word|Auto}#set{@dempron|Das}| #set{@word|Bus}#set{@dempron|Der}| #set{@word|Vespa}#set{@dempron|Die} } ``` It is necessary...

if I add a column in google spread sheet (did not try delete) before the columns where I had previously defied the column data for the generator; the data is...

Hey nice project, but i cant run it :( Maybee you can help. ``` $TG = new TextGenerator(); $TG->compile("#if{@val == 5|the value equals 5|the value doesn't equal 5}"); echo $TG->generate(array("val"=>5));...