Login
Remember
Register
Ask a Question
Which of the following PHP function is used to generate unique id?
+1
vote
asked
May 11, 2022
in
PHP
by
sharadyadav1986
Which of the following PHP function is used to generate unique id?
a) id()
b) mdid()
c) uniqueid()
d) None of the above
php-function
unique-id
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
May 11, 2022
by
sharadyadav1986
c) uniqueid()
Description: We can declare and call user-defined functions easily. The syntax to declare user-defined functions is given below -
function functionname(){
//code to be executed
}
...