Cette page n'est pas encore disponible en français, sa traduction est en cours. Si vous avez des questions ou des retours sur notre projet de traduction actuel, n'hésitez pas à nous contacter.
Metadata
ID:php-code-style/useless-statement
Language: PHP
Severity: Warning
Category: Error Prone
Description
This rule is about avoiding useless statements in your PHP code. Useless statements are those that do not have any effect on your code; they neither change the state of the program nor have any output. These can include standalone variables, constants, or expressions that are not part of a larger expression or statement.
Such statements are not only unnecessary but can also lead to confusion and make the code harder to understand and maintain. They can give the false impression that they are doing something, which can lead to bugs being overlooked.
To avoid violating this rule, always ensure that every statement in your code serves a purpose. Be wary of leaving in variables or expressions that were used for debugging or during development but are no longer needed. Regularly reviewing and cleaning up your code can prevent such issues.
Non-Compliant Code Examples
<?php$var;2;$a==$b;
Compliant Code Examples
<?php$var=2;$a=$b;
Seamless integrations. Try Datadog Code Analysis
Datadog Code Analysis
Try this rule and analyze your code with Datadog Code Analysis
How to use this rule
1
2
rulesets:- php-code-style # Rules to enforce PHP code style.
Create a static-analysis.datadog.yml with the content above at the root of your repository
Use our free IDE Plugins or add Code Analysis scans to your CI pipelines