Is it advisable to use double quotes instead of single quotes in PHP when dealing with line breaks?

When dealing with line breaks in PHP, it is advisable to use double quotes instead of single quotes. Double quotes allow for the interpretation of special characters like \n for line breaks, while single quotes treat everything as a literal string. By using double quotes, you can easily include line breaks in your strings without the need for additional functions or concatenation.

// Using double quotes for line breaks
$message = "Hello\nWorld!";
echo $message;