Answer Posted / rekha_sri
In PHP there is no need to declare the variable with
explicit type declaration. Variable type is specify by the
context.
For example, if we assign the integer value into variable,it
will be integer variable and if we assign the string value
into variable it will be string.
Example:
--------
<?php
$a=10;
$b="string";
echo "$a"; // 10
echo "$b"; // String
?>
If we want to force the variable type into different type we
can do the type casting.
Type casting example:
---------------------
<?php
$one = 10; // $one is an integer
$two = (boolean) $one; // $two is a boolean
?>
In PHP we are having function called settype() for setting
the particular variable type.
settype() example:
------------------
<?php
$first = "10rose"; // string
$second = true; // boolean
settype($first, "integer"); // $first is now 10 (integer)
settype($second, "string"); // $second is now "1" (string)
?>
Is This Answer Correct ? | 8 Yes | 0 No |
Post New Answer View All Answers
What is polymorphism in oop php?
Which is incorrect with respect to separating php code and html?
Tell me how can we connect to a mysql database from a php script?
What is rest api in php?
What is the difference between print() and echo() in PHP?
How do you connet mysql database with php?
What are form input html tags?
What is difference between session and cookies in php?
Why do we use interface in php?
What are the variables in php?
What are the string functions in php?
How do I check if a given variable is empty?
Write a program in php to reverse a number?
How to receive a cookie from the browser?
Tell us why did you choose this particular career path?