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...


What is the difference between $message and $$message ?

Answers were Sorted based on User's Feedback



What is the difference between $message and $$message ?..

Answer / prasad

$message is variable and $$message is variable variable.
$message="hello";
$$message="world";
echo $hello; // prints world
echo ${$message} //prints world

variable variable cant be used in php superglobalarray. and
cant use in functions and within classes

Is This Answer Correct ?    25 Yes 6 No

What is the difference between $message and $$message ?..

Answer / sakthivel

$var1 = "hello world";
$var2 = $var1;
$$var2 = "hello world";

Is This Answer Correct ?    6 Yes 2 No

What is the difference between $message and $$message ?..

Answer / vikram

$message="hello";
$hello="world";
echo $$message;
// will print "world"..this concept is called "variable of
variables"...

Is This Answer Correct ?    6 Yes 3 No

What is the difference between $message and $$message ?..

Answer / mohit

$message is a variable and $$message is a refrence variable
that have the refrence of $message.

Is This Answer Correct ?    5 Yes 2 No

What is the difference between $message and $$message ?..

Answer / laxmikanta pradhan

$message is variable and $$message is variable variable i.e.
$message is a variable whereas $$message is a refrence
variable having the refrence of $message.
Ex. $message="hello";
$$message="world";
echo $hello; // prints world
echo ${$message} //prints world

Is This Answer Correct ?    3 Yes 0 No

What is the difference between $message and $$message ?..

Answer / abhilash

if $message1 = "hello";
and $message = "message1";
den $$message = hello

Is This Answer Correct ?    6 Yes 9 No

What is the difference between $message and $$message ?..

Answer / keshab

$test = "example";
$temp = "test";

echo $temp // output is "test";
echo $$temp// output is "example";

thanks

Is This Answer Correct ?    1 Yes 4 No

Post New Answer

More PHP Interview Questions

What is the difference between mysql_fetch_object and mysql_fetch_array?

10 Answers   Sarv,


Can php run without server?

0 Answers  


Explain what is smarty?

0 Answers  


How is the ternary conditional operator used in php?

0 Answers  


What is php static function?

0 Answers  


How can you tell if a number is even or odd without using any condition or loop?

0 Answers  


Where sessions stored in PHP?

0 Answers  


How long does a php session last for?

0 Answers  


/temp is a type of filesystem directory. State Whether True or False?

0 Answers  


Do you know what is the function mysql_pconnect() usefull for?

0 Answers  


What are the current versions of apache, PHP, and mysql?

21 Answers  


What’s the difference between md5(), crc32() and sha1() crypto on PHP? -

2 Answers  


Categories