In PHP
we echo
strings this way :
echo 'string';
But i saw PHP
frameworks like Laravel
and scripts echo
strings using Curly Brackets
:
{string}
How i can do that without using any PHP
framework?
It's not necessary to use Curly Brackets
if there is other way to short echo!
I prefer code examples.