1.

What is String in PHP?

Answer»

In PHP, String is a collection of characters. It is one of the data TYPES. We can declare VARIABLE and assign string characters to it and we can DIRECTLY use them with ECHO statement.

Example

$var1 = “This is good INTERVIEW Question”
echo $var1;



Discussion

No Comment Found