The PHP Strings can be considered as important part of PHP. The string is series of characters which can be used in function. To use string first you have to specify it.
In PHP Strings is simply line of characters in single or double quotes like “Hello World!” or ‘Hello World!’ you can write any text in these quotes.
$my_string="I love PHP!";// Double Quotes
$my_string='Hello World!';// Single Quotes
Read More..
No comments:
Post a Comment