Complete reference guide of PHP Strings!
What is String in PHP A string is a sequence of letters, numbers, special characters and arithmetic values or combination of all. The simplest way to create a string is to enclose the string literal (i.e. string characters) in single quotation mark $my_string = ‘Hello World’; You can also use double quotation marks (“). However, single…
