PHP Line Indentation
- by Tower
Hi,
I'm curious to know, how many spaces of indentation do you prefer in PHP code?
function one()
{
 $one;
 function space()
 {
  $space;
 }
}
function two()
{
  $two;
  function spaces()
  {
    $spaces;
  }
}
function three()
{
   $three;
   function spaces()
   {
      $spaces;
   }
}
function four()
{
    $four;
    function spaces()
    {
        $spaces;
    }
}
Let's not make multiple answers for same identation, but use the +1 for answers that fit your preferences.