Hello. In C++ (AFAIK) after "if {...}" you also should add ";". But after this statement in PHP you don't have to (might look like negligence, which is so like PHP). But what is a better practice in PHP?
Code:
if (true)
{
echo 'True';
};
echo 'END';
Is this coding style better than
Code:
if (true)
{
echo 'True';
}
echo 'END';
?