can anybody please explain what are these special tags in php?
<?= ?>
I couldn’t find it on google.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
See the short_open_tags setting.
<?=is identical to<? echoand use of it requiresshort_open_tagto be on. A term to search for would be “short tags”.As an example:
<?='hello'?>is identical to<? echo 'hello' ?>which is a short form of<?php echo 'hello' ?>.See also Are PHP short tags acceptable to use? here on SO.