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

Answers were Sorted based on User's Feedback



What is difference between $x and $$x..

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

What is difference between $x and $$x..

Answer / chinuku

$var is a variable and $$variable is a Reference or Dynamic
variable
ex:$var="test";
$test="php";
<?php
echo $var;
echo $$var;
?>
ans
$var=test;
$$var=php;

Is This Answer Correct ?    22 Yes 4 No

What is difference between $x and $$x..

Answer / muzic

$x is a simple variable whereas $$x is a reference variable.

Is This Answer Correct ?    18 Yes 4 No

What is difference between $x and $$x..

Answer / psharma05

$x is a simple variable where $$x means value of $x becomes other variable.
eg.
$x="hello";
$$x="hi";
echo $hello;

output will be:
hi

Is This Answer Correct ?    11 Yes 5 No

What is difference between $x and $$x..

Answer / khan

Visit http://filesharepoint.com To Download free Scripts
books and many more just click the link below
<a
href='http://filesharepoint.com'>http://filesharepoint.com</a>

Is This Answer Correct ?    0 Yes 7 No

Post New Answer

More PHP Interview Questions

What is an example of a variable?

0 Answers  


what is the current salary package in India for a PHP programmer who has 1.5 years experience

0 Answers   ABB,


How will you create a bi-lingual site (multiple languages) ?

3 Answers  


Tell me how to set a page as a home page in a php based site?

0 Answers  


What are the ways to include file in php?

0 Answers  


How does html form submit work?

0 Answers  


What are the basic steps to store PHP session in to Database?

1 Answers   Rediff,


What is the current stable version of php?

0 Answers  


How to Pass JSON Data in a URL using CURL in PHP?

0 Answers  


Do you know how to get the ip address of the client?

0 Answers  


How can we check the value of a given variable is a number?

0 Answers  


What is uniqid php?

0 Answers  


Categories