CRITICAL
Rule Definition
Avoid using short tags like =$name> because it can create a problem for you if you are going to deploy your application on another server. Instead of using these shorts tags it is highly recommended to use which have the same results without introducing issues.
Remediation
Try and limit the use of short tags. Instead of using them, try and replace them with constructions of this type.
Violation Code Sample
<?php
function afunc() {
echo "afunc", PHP_EOL;
}
?>
<? afunc();?>
Fixed Code Sample
<?php
function afunc() {
echo "afunc", PHP_EOL;
}
?>
<?php afunc();?>
Related Technologies
Technical Criterion
Efficiency - Memory, Network and Disk Space Management
About CAST Appmarq
CAST Appmarq is by far the biggest repository of data about real IT systems. It's built on thousands of analyzed applications, made of 35 different technologies, by over 300 business organizations across major verticals. It provides IT Leaders with factual key analytics to let them know if their applications are on track.