1.2.39. Append And Assign Arrays¶
This rule reports arrays that are used both with append and direct index assignation. Read access are not considered here.
Array append and direct index assignation have different impact one on the other. In particular, assign a value explicitely and later append values may have an impact on one another.
<?php
$arrayAppend = array();
$arrayAppend[] = 1;
?>
1.2.39.1. Connex PHP features¶
1.2.39.1.1. Specs¶
Short name |
Arrays/AppendAndAssignArrays |
Rulesets |
|
Exakat since |
2.6.1 |
PHP Version |
All |
Severity |
Minor |
Time To Fix |
Quick (30 mins) |
Precision |
High |
Available in |