PHP string tip
24th June 2002
I’ve lost count of the number of times I’ve posted this PHP tip on a forum somewhere, so I may as well blog it:
$string = <<<EOD This string can contain both "double" and 'single' quotes, and any variables such as $name will be interpolated (i.e replaced with their value). The string ends at the first occurence of the sequence of characters specified at the beginning after the <<<, like this: EOD;
More on this feature can be found in the PHP manual.
More recent articles
- Maybe Meta's Llama claims to be open source because of the EU AI act - 19th April 2025
- Image segmentation using Gemini 2.5 - 18th April 2025
- GPT-4.1: Three new million token input models from OpenAI, including their cheapest model yet - 14th April 2025