Make PHP user-defined function return multiple values

Source: Internet
Author: User
Enables PHP user-defined functions to return multiple values. PHP user-defined functions can only return one value using the return statement. after the return statement is executed, the entire function is terminated. Sometimes, when a function is required to return multiple values, return cannot be used to output values one by one. However, the return statement can return any type of variables, which is the key to making the UDF return multiple values. See the code:

Function results ($ string)
{
$ Result = array ();
$ Result [] = $ string; // original string
$ Result [] = strtoupper ($ string); // replace all with uppercase letters
$ Result [] = strtolower ($ string); // replace all with lowercase letters
$ Result [] = ucwords ($ string); // replace the first letter of a word with an uppercase letter.

Return $ result;
}
$ Multi_result = results ('The quick brown fox jump over The lazy dog ');
Print_r ($ multi_result );
?>

Output result:
Array
(
[0] => The quick brown fox jump over the lazy dog
[1] => THE QUICK BROWN FOX JUMP OVER THE LAZY DOG
[2] => the quick brown fox jump over the lazy dog
[3] => The Quick Brown Fox Jump Over The Lazy Dog
)

The code above creates an $ result array, adds the processed and output values to $ result as an element, and outputs $ result, in this way, the user-defined function returns multiple values.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.