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 / meenakshisundaram

$a = 10;
$b = 20;
echo $a, $b;
swap();
echo $a, $b;

swap(){
list($a, $b) = array($b, $a);
}

Is This Answer Correct ?    1 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is php date function?

1035


Tell me how the result set of mysql be handled in php?

931


What is use of htmlspecialchars php?

968


How to write comment in php?

1111


What are properties in php?

923


What is an example of a variable?

961


Differentiate echo vs. Print statement.

876


Tell me how can we determine whether a php variable is an instantiated object of a certain class?

959


How to convert a string to uppercase in php?

970


What is the difference between array_merge() and array_merge_recursive() in php?

1004


What does the arrow mean in php?

950


How can you execute php script from the command line?

959


How can we connect to a mysql database from a php script?

1042


Explain the types of string comparision function in PHP

901


Explain the importance of the function htmlentities.

942