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 / nikunj kansara

$x=$a;
$a=$b;
$b=$x;
echo $a.",".$b;

Is This Answer Correct ?    11 Yes 4 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Is numeric in php?

1093


What are the steps involved to run php?

1117


What is a php object?

994


Which programming language does php resemble?

1004


Distinguish between urlencode and urldecode?

1055


How to break a file path name into parts?

1027


Which is best framework for php?

1072


Is java is better than php?

1051


Can we override static method?

1017


Is it more secure to use cookies to transfer session ids?

1013


How to convert a string to uppercase in php?

1143


Explain me what are the 3 scope levels available in php and how would you define them?

1267


Is php easier than node?

994


How escape single quotes php?

1039


How can you execute php script from the command line?

1060