Is it possible to return multiple items from a function – and assign them to several variables in a single statement – like can be done in some languages (e.g. Python) ?
For example, can I have something like this:
a, b, c,d = foo();
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
A function can not return multiple values, but similar results can be obtained by returning an array.
See http://php.net/manual/en/functions.returning-values.php