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


How are Variables Defined in PHP?

Answers were Sorted based on User's Feedback



How are Variables Defined in PHP?..

Answer / priyanka

php is a loosely typed language i.e without declaring a
variable we can use that,in this variable defined by using $
symbol for example $x

Is This Answer Correct ?    13 Yes 0 No

How are Variables Defined in PHP?..

Answer / master

variable r defined using the $ symbol.for ex: $x,$value etc.
u can even asign the values directly like $x=10 or $x='php';

Is This Answer Correct ?    4 Yes 0 No

How are Variables Defined in PHP?..

Answer / master

ya i agree with priyanka, as she said in php variables r
loosely typed in the sense that , for example if u r wrking
in c and u want to assign int value to a variable then it
is done as int x=3; but in case of php the values r not
assigned along with the data type like int $x=3; (same as
above) instead its only $x=3; and the php parser
understands that it is int type and works accordingly.

hope u guys got it!!!

Is This Answer Correct ?    3 Yes 0 No

How are Variables Defined in PHP?..

Answer / srinivas1982

Variables in PHP declared with $ symbol. ex: $x.

Is This Answer Correct ?    3 Yes 0 No

How are Variables Defined in PHP?..

Answer / muthu

Variables in PHP declared with $ symbol immediately
followed by alphabets or underscore. We can use variables
without declaring also. But if we are accessing one
variable without assigning values, then we will get warning
messages.
For example
<?php
$a=10;
if($a==2)
$b=20;
echo $b;
?>
This will throw warning messages.

Is This Answer Correct ?    1 Yes 0 No

How are Variables Defined in PHP?..

Answer / ranjith

Variables in PHP declared with $ symbol followed by word,
the word should be either alphabit r special symbols

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More PHP Interview Questions

What is namespace in php?

0 Answers  


What is the use of "enctype" attribute in a html form?

0 Answers  


What is restful api?

0 Answers  


How to take a substring from a given string in php?

0 Answers  


Is php dead 2019?

0 Answers  


Is age an interval or ratio?

0 Answers  


List few sensible functions in PHP?

0 Answers  


How to increase the maximum execution time of a script in php?

0 Answers  


How can I increase my website session?

0 Answers  


What is the use session in php?

0 Answers  


What is php glob?

0 Answers  


What is mysql_fetch_array?

0 Answers  


Categories