Magento 2 – How to Generate a Random String

magento2random

Is there a core class (preferably a framework class) in Magento 2 that can be used to generate random strings? Length of the string is not important.
I don't want to reinvent the wheel and write my own.

Best Answer

Yes you can use Magento\Framework\Math\Random with the getRandomString method ;)

In the same class you also have getRandomNumber and getUniqueHash

Related Topic