What is the difference between single-quoted and double-quoted strings in PHP?
PHP strings can be specified not just in two ways, but in four ways. Single quoted strings will display things almost completely “as is.” Variables and most escape sequences will not be interpreted. The exception is that to display a literal single quote, you can escape it with a back slash \’, and to display … Read more