I know that I can create a literal string literal in C # using the @ symbol. For example, ordinary
String path = "C:\\MyDocs\\myText.txt";
can also be rewritten as
String path = @"C:\MyDocs\myText.txt";
Thus, the string literal is not cluttered with escape characters and makes it more readable.
What I would like to know is whether PHP has an equivalent or do I need to manually delete the line?
string php
anonymous
source share