| Conditions | 3 |
| Paths | 2 |
| Total Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 37 | function IsCli() { |
||
| 38 | /* |
||
| 39 | if (isset($_ENV['_']) && (('/usr/bin/php' == substr($_ENV['_'], 0, 12)) |
||
| 40 | || ($_SERVER["SCRIPT_FILENAME"] == $_ENV['_']))) //chmod +x xxx.php and run itself |
||
| 41 | */ |
||
| 42 | if (!empty($_ENV['_']) || !empty($_SERVER['_'])) |
||
| 43 | $is_cli = true; |
||
| 44 | else |
||
| 45 | $is_cli = false; |
||
| 46 | return($is_cli); |
||
| 47 | } // end of func IsCli |
||
| 48 | |||
| 89 |
This check looks for variable assignements that are either overwritten by other assignments or where the variable is not used subsequently.
Both the
$myVarassignment in line 1 and the$higherassignment in line 2 are dead. The first because$myVaris never used and the second because$higheris always overwritten for every possible time line.