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 difference between $x and $$x

Answer Posted / deepesh mehta

This type of variable diclearation is called "Variable
variables".
Sometimes it is convenient to be able to have variable
variable names. That is, a variable name which can be set
and used dynamically. A normal variable is set with a
statement such as:

$x = 'hello';

A variable variable takes the value of a variable and
treats that as the name of a variable. In the above
example, hello, can be used as the name of a variable by
using two dollar signs. i.e.

$$x = 'world';

At this point two variables have been defined and stored in
the PHP symbol tree: $a with contents "hello" and $hello
with contents "world". Therefore, this statement

echo "$x ${$x}";

produces the exact same output as:

echo "$a $hello";

i.e. they both produce: hello world.

Is This Answer Correct ?    34 Yes 8 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How can I learn php fast?

1125


Inside a php function, what param needs to be set in order to access a global variable?

1023


What are the 5 types of variables?

1079


Write a hello world program using variable?

1008


Does php support inheritance?

1000


Do I need apache for php?

1131


What is the difference between a session and cookies?

993


How can we submit a form without using submit buttons?

1012


What is the use of limit in mysql?

1041


Is server side a session?

986


What is mvc in php?

1059


Tell me how can we connect to a mysql database from a php script?

1013


What changes I have to do in php.ini file for file uploading?

1119


Why php is used with mysql?

1080


Write a program to find a string is palindrome or not?

1019