String
PHP Data Type: String
Multi-line String
$xml = <<<XML
My
Custom
Xml
XML;
${var} String Interpolation Deprecated
Deprecated in PHP 8.2 | Recommended syntax for PHP 8.2 |
---|---|
Hello ${name}; | Hello {$name} |
echo “Hello ${$var}”; | echo “Hello {$$var}”; |
Reference
- PHP: Strings - Manual
- Multi-line strings in PHP - Stack Overflow
- PHP 8.2: What’s New and Changed • PHP.Watch