I want to create a random number with a format like that which will be used as an invoice number and also a contract number when making transactions, I use the Laravel framework
$request['no_vak'] = number_format(mt_rand(10000-9999),0,'','-'); $request['no_contract'] = number_format(mt_rand(100000,999999),0,'','-');
i want output 23-4532 and 134.93874 with random number
You can do this using sprintf() Function in PHP as shown below: