I am looking to create a system which on signup will create a subdomain on my website for the users account area.
Cisco Certified Network Associate Exam,640-802 CCNA All Answers ~100/100. Daily update
Cisco Certified Network Associate Exam,640-802 CCNA All Answers ~100/100. Daily update
Code:
function _()
{
echo 'hello word';
}
Output:
Fatal error: Cannot redeclare _()
I haven't defined this function _
before, then why I am getting this error?
_() is an alias for gettext.
ReplyDelete_ is an alias for gettext, a built-in function. Just as you cannot declare a function gettext, you can't create a function _ since one is already there.
ReplyDelete