Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

1. Write a function to swap two values ?
$a = 10;
$b = 20;
echo $a, $b;
swap(); // If u want u can pass parameters
echo $a, $b; // It should print 20 , 10

Answer Posted / ramse

One way is:

function swap($x, $y) {
$x ^= $y ^= $x ^= $y;
return array($x,$y);
}

Is This Answer Correct ?    2 Yes 5 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How to Retrieve the Session ID of the Current Session?

947


How to remove blank spaces from the string?

978


What is difference between Method overriding and overloading in PHP?

1010


What version of php do I have windows?

890


Why namespace is used in php?

957


How stop the execution of a php scrip?

985


Do you know what is the function func_num_args() used for?

987


What does the unlink() function means?

1028


What are the types of variables in php?

1026


Define anonymous classes in php7?

992


Which function would you use to read a line of data from a file in php?

989


Explain what is the difference between $var and $$var?

955


What are the design patterns in php?

953


What advance thing in php7?

913


How do you parse and process html/xml in php?

975