Strings in php

PHP includes core-level support for creating and manipulating strings. A string is a sequence of characters of arbitrary length. String literals are delimited by either single or double quotes: ‘big dog’“fat hog” Variables are expanded (interpolated) within double quotes, while within single quotes they are not: $name = “Guido”;echo “Hi, $name\n”;echo ‘Hi, $name’; Hi, GuidoHi, … Read more