Skip to content

Instantly share code, notes, and snippets.

@Pephers
Last active November 6, 2024 19:26
Show Gist options
  • Save Pephers/7910835 to your computer and use it in GitHub Desktop.
Save Pephers/7910835 to your computer and use it in GitHub Desktop.
How to call a PHP function inside a Heredoc.
<?php
$cb = function ($fn) {
return $fn;
};
echo <<<HEREDOC
Hello, {$cb(ucfirst('world'))}
HEREDOC;
@lucionescu
Copy link

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment