PHP is loosely Typed Language but could someone tell me, What is the default data type of any PHP variable? What is its implicit data Type?
|
|
Whilst PHP's variables are dynamic an unitialised variable can be evaluated as being
That will output "YARR" : codepad |
|||
|
|
|
PHP's variables are dynamic, and change depending on the data inside them. So they have no datatype by default. |
|||
|
|
|
From the manual on variables:
So, they are what you make of them. |
|||
|
|
|
Type Juggling PHP does not require (or support) explicit type definition in variable declaration; a variable's type is determined by the context in which the variable is used. That is to say, if a string value is assigned to variable $var, $var becomes a string. If an integer value is then assigned to $var, it becomes an integer. An example of PHP's automatic type conversion is the addition operator '+'. If either operand is a float, then both operands are evaluated as floats, and the result will be a float. Otherwise, the operands will be interpreted as integers, and the result will also be an integer. Note that this does not change the types of the operands themselves; the only change is in how the operands are evaluated and what the type of the expression itself is. Source: http://www.php.net/manual/en/language.types.type-juggling.php |
|||||
|