PATH:
home
/
lab2454c
/
westernclear.net
/
app
/
Helpers
<?php namespace App\Helpers; use Carbon\Carbon; /** * * @author Bipul Haldar * */ class Utility { public static function generatePassword() { $chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz' . '0123456789`-=~!@#$%^&*()_+,./<>?;:[]{}\|'; $str = ''; $max = strlen($chars) - 1; for ($i = 0; $i < 10; $i ++) { $str .= $chars[random_int(0, $max)]; } return $str; } }
[-] index.php
[edit]
[+]
..
[-] Utility.php
[edit]