Search code examples
phpcode-editorphp-ide

Where can I find a PHP editor with text format that actually works?


I'm using TextWrangler and I can't find a good code formatter. I tried TextMate and it ruined my code completely.

I don't care about anything else other than a button that formats the text. From this:

function hello() {

if ($statement) {

die();

}

}

To this:

function hello() {

    if ($statement) {

        die();

    }

}

Without having to press "Tab" 4 times.


Solution

  • First of all, Your question is opinion based, so there is not a real answer.

    But, if you want a text editor then use Sublime Text.

    It's very powerful. and very customizeable.

    After you've installed it, you can create a shortcut to indent your code.

    The link is here.