How can i return two variables in php?

Technically, you can't return more than one value. However, there are multiple ways to work around that limitation. The way that acts most like returning multiple values, is with the list keyword:

function getXYZ[]
{
    return array[4,5,6];
}

list[$x,$y,$z] = getXYZ[];

// Afterwards: $x == 4 && $y == 5 && $z == 6
// [This will hold for all samples unless otherwise noted]

Technically, you're returning an array and using list to store the elements of that array in different values instead of storing the actual array. Using this technique will make it feel most like returning multiple values.

The list solution is a rather php-specific one. There are a few languages with similar structures, but more languages that don't. There's another way that's commonly used to "return" multiple values and it's available in just about every language [in one way or another]. However, this method will look quite different so may need some getting used to.

// note that I named the arguments $a, $b and $c to show that
// they don't need to be named $x, $y and $z
function getXYZ[&$a, &$b, &$c]
{
    $a = 4;
    $b = 5;
    $c = 6; 
}

getXYZ[$x, $y, $z];

This technique is also used in some functions defined by php itself [e.g. $count in str_replace, $matches in preg_match]. This might feel quite different from returning multiple values, but it is worth at least knowing about.

A third method is to use an object to hold the different values you need. This is more typing, so it's not used quite as often as the two methods above. It may make sense to use this, though, when using the same set of variables in a number of places [or of course, working in a language that doesn't support the above methods or allows you to do this without extra typing].

class MyXYZ
{
    public $x;
    public $y;
    public $z;
}

function getXYZ[]
{
    $out = new MyXYZ[];
    
    $out->x = 4;
    $out->y = 5;
    $out->z = 6;
    
    return $out;
}

$xyz = getXYZ[];

$x = $xyz->x;
$y = $xyz->y;
$z = $xyz->z;

The above methods sum up the main ways of returning multiple values from a function. However, there are variations on these methods. The most interesting variations to look at, are those in which you are actually returning an array, simply because there's so much you can do with arrays in PHP.

First, we can simply return an array and not treat it as anything but an array:

function getXYZ[]
{
    return array[1,2,3];
}

$array = getXYZ[];

$x = $array[0];
$y = $array[1];
$z = $array[2];

The most interesting part about the code above is that the code inside the function is the same as in the very first example I provided; only the code calling the function changed. This means that it's up to the one calling the function how to treat the result the function returns.

Alternatively, one could use an associative array:

function getXYZ[]
{
    return array['x' => 4,
                 'y' => 5,
                 'z' => 6];
}

$array = getXYZ[];

$x = $array['x'];
$y = $array['y'];
$z = $array['z'];

Php does have the compact function that allows you to do same as above but while writing less code. [Well, the sample won't have less code, but a real world application probably would.] However, I think the amount of typing saving is minimal and it makes the code harder to read, so I wouldn't do it myself. Nevertheless, here's a sample:

function getXYZ[]
{
    $x = 4;
    $y = 5;
    $z = 6;
    
    return compact['x', 'y', 'z'];
}

$array = getXYZ[];

$x = $array['x'];
$y = $array['y'];
$z = $array['z'];

It should be noted that while compact does have a counterpart in extract that could be used in the calling code here, but since it's a bad idea to use it [especially for something as simple as this] I won't even give a sample for it. The problem is that it will do "magic" and create variables for you, while you can't see which variables are created without going to other parts of the code.

Finally, I would like to mention that list doesn't really play well with associative array. The following will do what you expect:

function getXYZ[]
{
    return array['x' => 4,
                 'y' => 5,
                 'z' => 6];
}

$array = getXYZ[];

list[$x, $y, $z] = getXYZ[];

However, the following will do something different:

function getXYZ[]
{
    return array['x' => 4,
                 'z' => 6,
                 'y' => 5];
}

$array = getXYZ[];

list[$x, $y, $z] = getXYZ[];

// Pay attention: $y == 6 && $z == 5

If you used list with an associative array, and someone else has to change the code in the called function in the future [which may happen just about any situation] it may suddenly break, so I would recommend against combining list with associative arrays.

Can a method return two variables?

No, you can not have two returns in a function, the first return will exit the function you will need to create an object.

How do you pass two values in return?

How to return multiple values from a function in JavaScript.
const getAge = [] => { return 37 } const getName = [] => { return 'Flavio' } ... .
const getDetails = [] => { return [37, 'Flavio'] } ... .
const [age, name] = getDetails[] ... .
const getDetails = [] => { return { age: 37, name: 'Flavio' } } const { age, name } = getDetails[].

How can we store return value in PHP variable?

You can't get a return value from that, but you can capture the contents by using the ob_functions: ob_start[]; doStuff[]; $output = ob_get_contents[]; ob_end_clean[]; Now $output contains the output of that function, rather than it having been printed.

How pass multiple values in array in PHP?

Create an instance for your view file and use predefined method of a controller file to set variables. Like this way: return new ViewModel[array[ 'order_by' => $order_by, 'order' => $order, 'page' => $page, 'paginator' => $paginator, ]];

Chủ Đề