PHP implements an instance of a function that can return multiple values, a PHP instance
This example describes a function usage in PHP that implements the ability to return multiple values. Share to everyone for your reference. The specific analysis is as follows:
In Python and Golang there is a way to return multiple values at the same time, in fact, PHP can, but compared to Python and Golang a little more trouble, here is a simple demo example, here is a list function
<?php function Retrieve_user_profile () { $user [] = "Jason"; $user [] = "jb51.net"; $user [] = "中文版"; return $user; } List ($name, $email, $language) = Retrieve_user_profile (); echo "Name: $name, Email: $email, preferred language: $language";? >
I hope this article is helpful to everyone's PHP programming.
http://www.bkjia.com/PHPjc/970977.html www.bkjia.com true http://www.bkjia.com/PHPjc/970977.html techarticle PHP implements an instance of a function that can return multiple values, and a PHP instance describes a function usage in PHP that implements the ability to return multiple values. Share to everyone for your reference. The specific analysis is as follows ...