Search
 
SCRIPT & CODE EXAMPLE
 

PHP

php return multiple values

<?php
function small_numbers()
{
    return [0, 1, 2];
}
// Array destructuring will collect each member of the array individually
[$zero, $one, $two] = small_numbers();

// Prior to 7.1.0, the only equivalent alternative is using list() construct
list($zero, $one, $two) = small_numbers();

?>
Comment

php function return multiple values

// Function to swap two numbers 
function swap( $x, $y ) {  
    return array( $y, $x ); 
}  
Comment

PREVIOUS NEXT
Code Example
Php :: string put inside tag string php 
Php :: how does substr_compare() works PHP 
Php :: php const scope 
Php :: php substr_replace 
Php :: laravel casts pivot table 
Php :: blade check user role laravel 
Php :: Laravel unique Validation with multiple input value 
Php :: Token capabilities in vault 
Php :: php function to get the last value of array 
Php :: Unable to do sum and getting same value by using while loop php 
Php :: laravel How to include model attribute automatically 
Php :: how get some parameter from request in laravel 
Php :: laravel get current user id 
Php :: htaccess after trailing slash page return status 200 
Php :: functions.php not working wordpress 
Php :: laravel edit method 
Php :: php 8 null safe operator 
Php :: Update Data Multiple Columns MySql Database Table PHP Function 
Php :: create array of zeros php 
Php :: wordpress if page 
Php :: php base58 decode 
Php :: mac os down upgrade php version 
Php :: laravel where json array column 
Php :: laravel all() 
Php :: where is view folder in laravel 
Php :: ModelNotFoundException 
Php :: woocommerce_product_query 
Php :: require password confirm laravel 
Php :: error_reporting(E_ERROR) 
Php :: foreign key string laravel 
ADD CONTENT
Topic
Content
Source link
Name
2+5 =