/
var
/
www
/
vhosts
/
ihelp.ro
/
httpdocs
/
vendor
/
cakedc
/
users
/
src
/
Traits
/
/var/www/vhosts/ihelp.ro/httpdocs/vendor/cakedc/users/src/Traits
mkdir
upload
Name
Size
Mode
Actions
RandomStringTrait.php
854
0644
edit
dl
rm
Edit:
/var/www/vhosts/ihelp.ro/httpdocs/vendor/cakedc/users/src/Traits/RandomStringTrait.php
(854B)
<?php declare(strict_types=1); /** * Copyright 2010 - 2019, Cake Development Corporation (https://www.cakedc.com) * * Licensed under The MIT License * Redistributions of files must retain the above copyright notice. * * @copyright Copyright 2010 - 2018, Cake Development Corporation (https://www.cakedc.com) * @license MIT License (http://www.opensource.org/licenses/mit-license.php) */ namespace CakeDC\Users\Traits; trait RandomStringTrait { /** * Generates random string * @param int $length String size. * @return string */ public function randomString($length = 10) { if (!is_numeric($length) || $length <= 0) { $length = 10; } $string = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"; return substr(str_shuffle($string), 0, $length); } }
Save