0

can anyone explain this function line by line?

function make_seed() { list($usec,$sec)=explode(' ',microtime ()); return(double)$sec+((double)$usec*100000); }

13th Oct 2016, 3:24 PM
prashanth
prashanth - avatar
1 Odpowiedź
0
1: keyword of making a function + the name of your function + () 2: open the function 3: getting an arraylist + getting the arraylist as a list of strings using the function microtime() 4: return $sec as a double integer + return $usec*100000 as a double integer 5: close the definition of the function
12th Nov 2016, 10:08 AM
Thomas Mout
Thomas Mout - avatar