PHP echo tag and quotes -


i tried search solution don't know how it. on php when use (echo) tag, it's possible use other delimiter other " or ' ? example, can this?

echo *hello world*; 

or

echo |hello world|; 

maybe editting php.ini?

thanks you.

no. can't this. changing fundamentals of language. it's asking if can use : instead of ; end statements.

if need use ' in echo statement use \, escape character strings. instance:

echo "pete\'s coffee" //prints: pete's coffee 

Comments

Popular posts from this blog

node.js - How to mock a third-party api calls in the backend -

node.js - Why do I get "SOCKS connection failed. Connection not allowed by ruleset" for some .onion sites? -

matlab - 0-by-1 sym - What do I need to change in order to get proper symbolic results? -