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
Post a Comment