PHP code indentation


When writing code, you must pay attention to the indentation rules of the code. We stipulate the code indentation rules as follows:
a. Use 4 spaces as indentation instead of tab indentation (for ultraedit, it can be preset)
Example:

for ( $i=0;$i<$count;$i++ ){
    echo "test";
}