📁 File Manager Pro
v10.0.2 | PHP: 8.1.34
Server: LiteSpeed
2026-06-30 01:30:14
📂
/
/
opt
/
cpanel
/
ea-wappspector
/
vendor
/
squizlabs
/
php_codesniffer
/
src
/
Standards
/
Generic
/
Docs
/
CodeAnalysis
✏️
Editing: JumbledIncrementerStandard.xml
<documentation title="Jumbled Incrementers"> <standard> <![CDATA[ Incrementers in nested loops should use different variable names. ]]> </standard> <code_comparison> <code title="Valid: Two different variables being used to increment."> <![CDATA[ for ($i = 0; $i < 10; <em>$i++</em>) { for ($j = 0; $j < 10; <em>$j++</em>) { } } ]]> </code> <code title="Invalid: Inner incrementer is the same variable name as the outer one."> <![CDATA[ for ($i = 0; $i < 10; <em>$i++</em>) { for ($j = 0; $j < 10; <em>$i++</em>) { } } ]]> </code> </code_comparison> </documentation>
💾 Save Changes
❌ Cancel